ocr_scan 0.0.2
ocr_scan: ^0.0.2 copied to clipboard
OCR scan library for Flutter. It can scan text form zones in preview.
OCR Scan #
OCR scan library for Flutter. It can scan text form zones in preview.
How to use #
- Add
ocr_scanto yourpubspec.yaml - Import the desired package or class.
import 'package:ocr_scan/ocr_scan.dart';
...
OcrScanPreview(
ocrZonePainter: OcrScanZonePainter(
elements: [
const OcrScanZone(Rect.fromLTWH(0, 0, 1280, 100)), // Zone1: Top center
const OcrScanZone(Rect.fromLTWH(0, 620, 1280, 100)), // Zone2: Bottom center
],
imageSize: const Size(1280, 720),
rotation: InputImageRotation.rotation0deg,
cameraLensDirection: CameraLensDirection.back,
),
onOcrTextLine: ((int, List<TextLine>) value) {
print(value);
},
);
...
Contributing #
Contributions are always welcome!
Please check out our contribution guidelines for more details.
License #
Bloc Architecture Core is licensed under the MIT License.