pdfium-render 0.9.0

A high-level idiomatic Rust wrapper around Pdfium, the C++ PDF library used by the Google Chromium project.
Documentation
1
2
3
4
5
6
use crate::bindgen::FPDF_PAGE;
use crate::error::PdfiumError;

fn flatten(_page_handle: FPDF_PAGE) -> Result<(), PdfiumError> {
    unimplemented!()
}