extractImageFiles method

Future<Result<List<String>>> extractImageFiles(
  1. String pdfFileUri, {
  2. PdfExtractorOptions? options,
})

Extract images from a PDF.

pdfFileUri - The file uri of the PDF to extract images from. options - The options for PDF image extraction.

Returns a Future that completes with the list of file uris to the extracted images.

Implementation

Future<Result<List<String>>> extractImageFiles(String pdfFileUri,
    {PdfExtractorOptions? options}) {
  return ScanbotPdfImageExtractorImpl.extractImageFiles(pdfFileUri, options);
}