dart_pdf_reader 1.0.1 copy "dart_pdf_reader: ^1.0.1" to clipboard
dart_pdf_reader: ^1.0.1 copied to clipboard

Small pure-dart library for parsing PDF files. Supports reading all pdf structures

Version codecovOpenSSF Scorecard

Features #

'Simple' PDF reader package. Does not do a lot of interpretation of the data that is being read, but it does provide a way to read the data from a PDF file

Getting started #

  1. Create RandomAccessStream from either bytes ByteStream or file FileStream
  2. Create PDFParser using the stream from step 1
  3. Read the PDF file using the PDFParser from step 2 await parser.parse()

Example #

final stream = ByteStream(File(inputFile).readAsBytesSync());
final doc = await PDFParser(stream).parse();

final catalog = await doc.catalog;
final pages = await catalog.getPages();
final outlines = await catalog.getOutlines();
final firstPage = pages.getPageAtIndex(0);
13
likes
140
pub points
78%
popularity

Publisher

verified publisherchimerapps.com

Small pure-dart library for parsing PDF files. Supports reading all pdf structures

Repository (GitHub)
View/report issues

Topics

#pdf #parser

Documentation

API reference

Funding

Consider supporting this project:

buymeacoffee.com
ko-fi.com

License

Apache-2.0 (LICENSE)

Dependencies

archive, charset, collection, meta

More

Packages that depend on dart_pdf_reader