https://github.com/extrawurst/pdf-text-diff
Text based diff between two PDF files
https://github.com/extrawurst/pdf-text-diff
pdf rust-lang
Last synced: about 1 year ago
JSON representation
Text based diff between two PDF files
- Host: GitHub
- URL: https://github.com/extrawurst/pdf-text-diff
- Owner: extrawurst
- Created: 2024-01-04T13:09:52.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-04T17:42:32.000Z (over 2 years ago)
- Last Synced: 2025-03-25T13:21:17.985Z (over 1 year ago)
- Topics: pdf, rust-lang
- Language: Rust
- Homepage:
- Size: 129 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pdf-text-diff
extracts raw text from two PDFs and shows a text-based diff:
usage:
```
cargo r -- pdfs/simple_a.pdf pdfs/simple_b.pdf
```
compares [simple_a.pdf](pdfs/simple_a.pdf) with [simple_b.pdf](pdfs/simple_b.pdf):

## dependencies:
* [pdf](https://crates.io/crates/pdf) for the PDF parsing
* [similar](https://crates.io/crates/similar) for the text diffing