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