HTML JPG PDF XML DOCX
  Product Family
PDF

Work with images in PDF in Python SDK

Manipulate images in PDF Document using server-side Python API.

Get Started

How to work with images via Cloud Python SDK

In order to work with images in PDF via Cloud Python SDK , we’ll use Aspose.PDF Cloud Python SDK. This Cloud SDK assists Python programmers in developing cloud-based PDF creator, annotator, editor, and converter apps using Python programming language via Aspose.PDF REST API. Simply create an account at Aspose for Cloud and get your application information. Once you have the App SID & key, you are ready to give the Aspose.PDF Cloud Python SDK. If the python package is hosted on Github, you can install directly from Github:

Installation from Github


     
    pip install git+https://github.com/aspose-pdf-cloud/aspose-pdf-cloud-python.git

Package Manager Console Command

     
    pip install asposepdfcloud

Steps to create a image via Python SDK

Aspose.PDF Cloud developers can easily load & create image in PDF in just a few lines of code.

  1. Initialize the Aspose PDF API
  2. Upload the PDF Document to Cloud Storage
  3. Reads a local image file and uploads it to the Aspose.PDF Cloud storage.
  4. Inserts the uploaded image into the uploaded PDF file at a specific location.
  5. Download the result if needed it
 

This sample code shows creating a image in PDF documents


    import shutil
    import json
    import logging
    from pathlib import Path
    from asposepdfcloud import ApiClient, PdfApi

    # Configure logging
    logging.basicConfig(level=logging.INFO, format="%(asctime)s - %(levelname)s - %(message)s")

    class ImagesAdd:
        """Class for add image to PDF using Aspose PDF Cloud API."""
        def addImageToPdf(self):
            """Append a new image to the PDF document."""
            localFolder = "C:\Samples"
            storageDocumentName = "sample.pdf"
            localImagePath = "C:\\Samples\\sample.jpg"
            storageImageFile = "sample.jpg"
            storageTempFolder = "TempPdfCloud"
            outputFileName = "output_add_images.pdf"

            # Get your AppSid and AppSecret from https://dashboard.aspose.cloud (free registration required). 
            self.pdf_api = PdfApi(ApiClient(AppSecret, AppSid))

            if self.pdf_api:
                file_path = localFolder + '/' + storageDocumentName
                self.pdf_api.upload_file(storageTempFolder + '/' + storageDocumentName, file_path)

                self.pdf_api.upload_file(storageTempFolder + "/" + storageImageFile, localImagePath)

                pageNumber = 1
                llx = 10
                lly = 10
                urx = 100
                ury = 100

                opts = {
                    "image_file_path" : storageTempFolder + "/" + storageImageFile,
                    "folder" : storageTempFolder
                }
                self.pdf_api.post_insert_image(storageDocumentName, pageNumber, llx, lly, urx, ury, **opts)

                temp_file = self.pdf_api.download_file(storageTempFolder + '/' + storageDocumentName)
                local_path = localFolder + '/' + outputFileName
                shutil.move(temp_file, str(local_path))
                logging.info(f"download_result(): File successfully downloaded: {local_path}")
 

With our Python SDK you can

  • Add PDF document’s header & footer in text or image format.
  • Add tables & text or image stamps to PDF documents.
  • Append multiple PDF documents to an existing file.
  • Work with PDF attachments, annotations, & form fields.
  • Apply encryption or decryption to PDF documents & set a password.
  • Delete all stamps & tables from a page or entire PDF document.
  • Delete a specific stamp or table from the PDF document by its ID.
  • Replace single or multiple instances of text on a PDF page or from the entire document.
  • Extensive support for converting PDF documents to various other file formats.
  • Extract various elements of PDF files & make PDF documents optimized.
  • You can try out our free App to replace the images in PDF files online and test the functionality.

  •