-
public final class MultiPageImageCaptureScenario.ResultProvides access to the result of a multipage document capture.
-
-
Method Summary
Modifier and Type Method Description final List<String>getPages()Returns all the pages identifiers in the storage. final BitmaploadImage(String pageId)Returns the captured and cropped image for the specified page. final Array<Point>loadBoundary(String pageId)Returns the document boundary for the specified page. final ImageCaptureScenario.DocumentSizeloadDocumentSize(String pageId)Returns the document size for the specified page. final BitmaploadOriginalImage(String pageId)Returns the original captured image for the specified page. final Unitdelete(String pageId)Removes the page with specified identifier. final Unitclear()Removes all pages from the storage. -
-
Method Detail
-
getPages
@WorkerThread() final List<String> getPages()
Returns all the pages identifiers in the storage.
-
loadImage
@WorkerThread() final Bitmap loadImage(String pageId)
Returns the captured and cropped image for the specified page.
- Parameters:
pageId- Identifier of the page.
-
loadBoundary
@WorkerThread() final Array<Point> loadBoundary(String pageId)
Returns the document boundary for the specified page.
- Parameters:
pageId- Identifier of the page.
-
loadDocumentSize
@WorkerThread() final ImageCaptureScenario.DocumentSize loadDocumentSize(String pageId)
Returns the document size for the specified page.
- Parameters:
pageId- Identifier of the page
-
loadOriginalImage
@WorkerThread() final Bitmap loadOriginalImage(String pageId)
Returns the original captured image for the specified page.
- Parameters:
pageId- Identifier of the page.
-
delete
@WorkerThread() final Unit delete(String pageId)
Removes the page with specified identifier.
- Parameters:
pageId- Identifier of the page to be removed.
-
-
-
-