FLUTTER ECOSYSTEM

NicolaVerbeeck/dart_pdf_reader

Biblioteca leitora de PDF em Dart puro

Capa do projeto dart_pdf_reader
Stars
27
Forks
6
Último push (UTC)
3 de mar. de 2026
Status do projeto
Ativo
Nicola Verbeeck GitHub avatar
GITHUB User

Nicola Verbeeck ↗

ChimerappsBelgium
LinguagensDart

Pacotes publicados por este repositório

Dependências usadas

Lista de dependências 8 itens

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher README

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);