v2.2.0
dart_pdf_reader
用於解析PDF檔案的小型純Dart庫。支援讀取所有PDF結構
31喜歡 4.4萬近 30 天下載160Pub 分數
AndroidiOSWebmacOSWindowsLinux
純 Dart 編寫的 PDF 讀取器庫
以下為英文專案原文快照,最新內容請造訪 GitHub。
Version codecovOpenSSF Scorecard
'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
RandomAccessStream from either bytes ByteStream or file FileStreamPDFParser using the stream from step 1PDFParser from step 2 await parser.parse()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);