ScanbotImageOperations: {
    extractImagesFromPDF: ((params) => Promise<string[]>);
    readImageData: ((imageFileUri) => Promise<string>);
}

Type declaration

  • extractImagesFromPDF: ((params) => Promise<string[]>)

    Extract images from a PDF represented by the file uri. The PDF file uri is part of the input parameters.

    Returns

  • readImageData: ((imageFileUri) => Promise<string>)

    Returns the Base 64 encoded representation of the image represented by the file uri.

    Returns

      • (imageFileUri): Promise<string>
      • Parameters

        • imageFileUri: string

        Returns Promise<string>