Implement Tf, Td, TD, Tm, T* operators for Phase 3.1 text state. - Add TSTAR_ZERO_LEADING, FONT_RESOURCE_NOT_FOUND, FONT_SIZE_ZERO_OR_NEGATIVE diagnostics - Add move_text, move_text_set_leading, set_text_matrix, next_line, set_font methods to GraphicsState - Refactor execute_with_do to use gstate.text_matrix instead of local TextMatrix - Implement Tf with ResourceStack font resolution and size clamping - Implement Td/TD/Tm/T* operators with correct matrix semantics - Add acceptance criteria tests for all operators Per PDF spec: - Td: text_line_matrix = translate(tx, ty) * text_line_matrix - TD: same as Td, plus sets leading = -ty - Tm: overwrites both text_matrix and text_line_matrix (does not accumulate) - T*: equivalent to Td 0 -leading - Tf: resolves font name from ResourceStack, clamps size <= 0 to 1.0 Closes: pdftract-4x0y Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| benches | ||
| build | ||
| examples | ||
| proptest-regressions/parser/lexer | ||
| src | ||
| tests | ||
| __test__.pdf | ||
| build.rs | ||
| Cargo.toml | ||
| pdftract-core.cdx.json | ||
| README.md | ||
pdftract-core
The core Rust library for PDF text extraction. This crate provides the parsing, layout analysis, font encoding recovery, and text extraction primitives used by the CLI (pdftract-cli) and Python bindings (pdftract-py).
Cargo.lock Policy
This workspace checks in Cargo.lock at the repository root. This is unconventional for library crates—the Cargo Book historically suggested that only binary crates should check in lockfiles, allowing library consumers to resolve their own dependency versions.
pdftract departs from this convention for release reproducibility:
-
SLSA Level 3 provenance requires that every milestone tag produces byte-identical artifacts across builds. Without a checked-in lockfile, two runs of
cargo buildon the same commit can resolve different transitive dependency versions, producing different binary hashes. -
Multi-output artifacts—this workspace produces Rust crates (
pdftract-core,pdftract-cli), Python wheels (pdftract-py), and Docker images. All must be built from the same dependency tree. -
Supply-chain security—the lockfile pins checksums for all transitive dependencies, enabling
cargo auditto detect yanked or compromised crates. -
Downstream consumers can still ignore the lockfile if needed. Cargo allows
cargo build --frozenwith a local lockfile override, or consumers can vendor the crate with their own dependency resolution.
The tradeoff—occasional merge conflicts when PRs update overlapping dependencies—is worth the guarantee of reproducible releases. See CONTRIBUTING.md for the lockfile-update workflow.
Modules
parser: PDF spec parsing (xref, trailer, object streams, indirect references)font: Font encoding recovery, glyph name lookup, fingerprintinglayout: Page layout analysis, region segmentation, reading orderextract: Text extraction with provenance (bounding boxes, confidence scores)ocr: Tesseract integration for raster pages
Usage
use pdftract_core::{extract_text, ExtractOptions};
let options = ExtractOptions::default();
let result = extract_text("document.pdf", &options)?;
println!("{}", result.text);