dart_pdf_reader 0.0.5
dart_pdf_reader: ^0.0.5 copied to clipboard
Small pure-dart library for parsing PDF files. Supports reading all pdf structures
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 bytesByteStream
or fileFileStream
- Create
PDFParser
using the stream from step 1 - Read the PDF file using the
PDFParser
from step 2await parser.parse()