Last active
March 19, 2024 17:37
-
-
Save MyricSeptember/e3497b798e70e035b9bb5d088ca8fe40 to your computer and use it in GitHub Desktop.
Scanner Options Builder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return GmsDocumentScannerOptions.Builder() | |
.setScannerMode(GmsDocumentScannerOptions.SCANNER_MODE_FULL) | |
.setGalleryImportAllowed(true) | |
.setPageLimit(numberOfPages.toInt()) | |
.setResultFormats( | |
GmsDocumentScannerOptions.RESULT_FORMAT_JPEG, | |
GmsDocumentScannerOptions.RESULT_FORMAT_PDF | |
).build() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment