v2.2.0
dart_pdf_reader
PDF फ़ाइलों के पार्सिंग के लिए छोटी शुद्ध-डार्ट पुस्तकालय। सभी PDF संरचनाओं को पढ़ने का समर्थन करता है
31लाइक 44.3 हज़ार30-दिन डाउनलोड160Pub अंक
AndroidiOSWebmacOSWindowsLinux
शुद्ध डार्ट में 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);