dart_pdf_reader

Creator: coderz1093

Last updated:

Add to Cart

Description:

dart pdf reader

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 #

Create RandomAccessStream from either bytes ByteStream or file FileStream
Create PDFParser using the stream from step 1
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);
copied to clipboard

License

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

Files:

Customer Reviews

There are no reviews.