capacitor-plugin-scanbot-sdk
Version:
Scanbot Document and Barcode Scanner SDK for Capacitor
17 lines (16 loc) • 634 B
TypeScript
import type { PdfExtractorOptions } from './types/base/PdfExtractorOptions';
/**
* Entry point for all PDF image extraction features.
*/
export declare const ScanbotPdfImageExtractor: {
/**
* Extract images from a PDF.
* @param {string} params.pdfFileUri - The file uri of the PDF to extract images from.
* @param {PdfExtractorOptions} params.options - The options for PDF image extraction.
* @returns {Promise<string[]>} - The list of file uris to the extracted images.
*/
extractImageFiles(params: {
pdfFileUri: string;
options?: PdfExtractorOptions;
}): Promise<string[]>;
};