pdf_barcode_decoder 0.0.1
pdf_barcode_decoder: ^0.0.1 copied to clipboard
A fast, lightweight Flutter plugin to decode barcodes (QR, PDF417, Aztec, DataMatrix, Code128, etc.) directly from PDF files and bytes.
Changelog #
0.0.1 #
- Initial release of
pdf_barcode_decoder. - Decode 1D and 2D barcodes directly from PDF files (
File), in-memory bytes (Uint8List), and Flutter app assets (rootBundle). - Native PDF rendering using Android
PdfRendererand iOSPDFKit. - Native barcode scanning using ZXing Core on Android and Apple Vision Framework on iOS.
- Zero Google Play Services / ML Kit dependencies.
- Multi-barcode detection per page with IoU-based deduplication.
- Configurable rendering resolution (DPI), page limits (
maxPages,firstPageOnly), early stopping (stopAfterFirst), and format filters (BarcodeFormat). - Comprehensive test suite and example application.