Class CaptureResult
- java.lang.Object
-
- io.digified.digified_library.capture.CaptureResult
-
public class CaptureResult extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description CaptureResult(int captureType, android.graphics.Bitmap capturedBitmap)
Constructor for the captured result object
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description android.graphics.Bitmap
getCapturedBitmap()
Getter method forcapturedBitmap
int
getCaptureType()
Getter method forcaptureType
-
-
-
Constructor Detail
-
CaptureResult
public CaptureResult(int captureType, android.graphics.Bitmap capturedBitmap)
Constructor for the captured result object- Parameters:
captureType
- capture type fromDigifiedConstants.CaptureType
capturedBitmap
- the capture bitmap image
-
-
Method Detail
-
getCaptureType
public int getCaptureType()
Getter method forcaptureType
- Returns:
- the capture type of this CaptureResult
-
getCapturedBitmap
public android.graphics.Bitmap getCapturedBitmap()
Getter method forcapturedBitmap
- Returns:
- captured Bitmap of this CaptureResult
-
-