Skip to content

Instantly share code, notes, and snippets.

@blog-aspose-cloud
Last active December 18, 2021 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blog-aspose-cloud/f291bb645863d613fa1ec86eb3d4599c to your computer and use it in GitHub Desktop.
Save blog-aspose-cloud/f291bb645863d613fa1ec86eb3d4599c to your computer and use it in GitHub Desktop.
This Gist contains code snippets regarding Conversion of PDF pages to Image format using Aspose.PDF Cloud SDK for Python
This Gist contains code snippets regarding Conversion of PDF pages to Image format using Aspose.PDF Cloud SDK for Python
def pdf2Image():
try:
#Client credentials
client_secret = "1c9379bb7d701c26cc87e741a29987bb"
client_id = "bbf94a2c-6d7e-4020-b4d2-b9809741374e"
#initialize PdfApi client instance using client credetials
pdf_api_client = asposepdfcloud.api_client.ApiClient(client_secret, client_id)
# create PdfApi instance while passing PdfApiClient as argument
pdf_api = PdfApi(pdf_api_client)
#source PDF file
input_file = 'URL2PDF.pdf'
#resultant Image file
resultant_image = 'PDF2JPEG.jpeg'
# Call API to convert PDF pages to JPEG format and save output to Cloud storage
response = pdf_api.put_page_convert_to_jpeg(name = input_file, page_number= 3, out_path= resultant_image)
print(response)
# print message in console (optional)
print('PDF page successfully converted to JPEG !')
except ApiException as e:
print("Exception while calling PdfApi: {0}".format(e))
print("Code:" + str(e.code))
print("Message:" + e.message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment