document_scanner_flutter

Creator: coderz1093

Last updated:

Add to Cart

Description:

document scanner flutter

document_scanner_flutter #
A document scanner + PDF generator plugin for flutter

Getting Started #
Installing
document_scanner_flutter: ^0.2.3
copied to clipboard
Basic Usage
try {
File scannedDoc = await DocumentScannerFlutter.launch();
// `scannedDoc` will be the image file scanned from scanner
} on PlatformException {
// 'Failed to get document path or operation cancelled!';
}
copied to clipboard
Or With Specific Source (Gallery / Camera)
try {
File scannedDoc = await DocumentScannerFlutter.launch(source: ScannerFileSource.CAMERA); // Or ScannerFileSource.GALLERY
// `scannedDoc` will be the image file scanned from scanner
} on PlatformException {
// 'Failed to get document path or operation cancelled!';
}
copied to clipboard
New Features! 🎊🥳😎 #
PDF generation of scanned images
try {
File scannedDoc = await DocumentScannerFlutter.launchForPdf(source: ScannerFileSource.CAMERA); // Or ScannerFileSource.GALLERY
// `scannedDoc` will be the PDF file generated from scanner
} on PlatformException {
// 'Failed to get document path or operation cancelled!';
}
copied to clipboard
Android Scanner labels customization
try {
// Other Android Scanner labels customization
var androidLabelsConfigs = {
ScannerConfigsAndroid.ANDROID_NEXT_BUTTON_TITLE : "Next Step",
ScannerConfigsAndroid.ANDROID_SAVE_BUTTON_TITLE: "Save It",
ScannerConfigsAndroid.ANDROID_ROTATE_LEFT_TITLE: "Turn it left",
ScannerConfigsAndroid.ANDROID_ROTATE_RIGHT_TITLE: "Turn it right",
ScannerConfigsAndroid.ANDROID_ORIGINAL_TITLE: "Original",
ScannerConfigsAndroid.ANDROID_BMW_TITLE: "B & W"
}

File scannedDoc = await DocumentScannerFlutter.launchForPdf(source: ScannerFileSource.CAMERA,androidConfigs: androidLabelsConfigs);
// `scannedDoc` will be the PDF file generated from scanner
} on PlatformException {
// 'Failed to get document path or operation cancelled!';
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.