| Crates.io | pdf-extract-temporary-migitation-panic |
| lib.rs | pdf-extract-temporary-migitation-panic |
| version | 0.7.1 |
| created_at | 2023-02-18 15:30:21.990066+00 |
| updated_at | 2023-02-18 15:30:21.990066+00 |
| description | A library to extract content from pdfs |
| homepage | |
| repository | https://github.com/Endle/pdf-extract/tree/publish |
| max_upload_size | |
| id | 788294 |
| size | 737,259 |
A rust library to extract content from PDF files.
let bytes = std::fs::read("tests/docs/simple.pdf").unwrap();
let out = pdf_extract::extract_text_from_mem(&bytes).unwrap();
assert!(out.contains("This is a small demonstration"));