Package io.scanbot.sdk.docprocessing
Interface PdfPagesExtractor
-
- All Implemented Interfaces:
public interface PdfPagesExtractor
Allows to import pdf files to Scanbot SDK as pages or extract image files
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
PdfPagesExtractor.Companion
-
Method Summary
Modifier and Type Method Description abstract List<String>
pagesFromPdf(File pdfFile, Float scaling, Bitmap.Config bitmapConfig, LongOperationCancelCallback cancelCallback, ProgressCallback progressCallback)
Converts pdf document to separate image files as pages with given options. -
-
Method Detail
-
pagesFromPdf
abstract List<String> pagesFromPdf(File pdfFile, Float scaling, Bitmap.Config bitmapConfig, LongOperationCancelCallback cancelCallback, ProgressCallback progressCallback)
Converts pdf document to separate image files as pages with given options. If the encryption of sdk is enabled all pages WILL be encrypted.
- Parameters:
pdfFile
- input pdf documentscaling
- size of the image modifier.bitmapConfig
- bitmap config to use.cancelCallback
- callback that can cancel the operation during the extraction of pagesprogressCallback
- callback that can get the number of pages already processed during the extraction of pages
-
-
-
-