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