FLUTTER ECOSYSTEM

NicolaVerbeeck/dart_pdf_reader

純 Dart 編寫的 PDF 讀取器庫

dart_pdf_reader 專案封面
Stars
27
Forks
6
最近推送(UTC)
2026年3月3日
專案狀態
未封存
Nicola Verbeeck GitHub avatar
GITHUB User

Nicola Verbeeck ↗

ChimerappsBelgium
語言Dart

此儲存庫發佈的套件

使用的依賴

依賴清單 8 項

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 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);