Interface FullDocumentImageDpiOptions
- All Known Implementing Classes:
BlinkCardRecognizer
public interface FullDocumentImageDpiOptions
Options for configuring the DPI (Dots Per Inch) for full document image in cases when it
should be returned.
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the DPI (Dots Per Inch) for full document image that should be returned.voidsetFullDocumentImageDpi(int desiredDPI) Sets desired DPI (Dots Per Inch) for full document image that should be returned.
-
Method Details
-
getFullDocumentImageDpi
int getFullDocumentImageDpi()Returns the DPI (Dots Per Inch) for full document image that should be returned. By default, this is set to '250'.- Returns:
- DPI for full document image that should be returned.
-
setFullDocumentImageDpi
void setFullDocumentImageDpi(@IntRange(from=100L,to=400L) int desiredDPI) Sets desired DPI (Dots Per Inch) for full document image that should be returned. By default, this is set to '250'.- Parameters:
desiredDPI- desired DPI in range [100, 400]
-