Package 

Class MultiPageImageCaptureScenario.Result

    • Method Summary

      Modifier and Type Method Description
      final List<String> getPages() Returns all the pages identifiers in the storage.
      final Bitmap loadImage(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.DocumentSize loadDocumentSize(String pageId) Returns the document size for the specified page.
      final Bitmap loadOriginalImage(String pageId) Returns the original captured image for the specified page.
      final Unit delete(String pageId) Removes the page with specified identifier.
      final Unit clear() Removes all pages from the storage.
      • Methods inherited from class com.abbyy.mobile.uicomponents.scenario.MultiPageImageCaptureScenario.Result

        equals, hashCode, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.
      • 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.
      • clear

        @WorkerThread() final Unit clear()

        Removes all pages from the storage.