jrmuizel / pdf-extract

A rust library for extracting content from pdfs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pdf-extract

Build Status crates.io Documentation

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

See also

Not PDF specific

About

A rust library for extracting content from pdfs


Languages

Language:Rust 99.6%Language:Python 0.4%