Variable ScanbotPdfImageExtractorConst

ScanbotPdfImageExtractor: {
    extractImageFiles(params): Promise<string[]>;
}

Entry point for all PDF image extraction features.

Type declaration

  • extractImageFiles:function
    • Extract images from a PDF.

      Parameters

      • params: {
            options?: PdfExtractorOptions;
            pdfFileUri: string;
        }
        • Optional options?: PdfExtractorOptions

          The options for PDF image extraction.

        • pdfFileUri: string

          The file uri of the PDF to extract images from.

      Returns Promise<string[]>

      • The list of file uris to the extracted images.