//! # Overview
//! This crate is a simplified port of Python's [`pdf2image`](https://github.com/Belval/pdf2image/) that wraps `pdftoppm` and `pdftocairo` (part of [poppler](https://poppler.freedesktop.org/))
//! to convert PDFs to `image::DynamicImage`s.
//!
//! It requires `poppler` to be installed on your system. You can follow the instructions found in the [README.md file which is most easily viewed on
//! github](https://github.com/styrowolf/pdf2image/blob/main/README.md).
//!
//! ## Quick Start
//!
//! ```rust
//! use pdf2image::{PDF2ImageError, RenderOptionsBuilder, PDF};
//!
//! fn main() -> Result<(), PDF2ImageError> {
//! let pdf = PDF::from_file("examples/pdfs/ropes.pdf").unwrap();
//! let pages = pdf.render(
//! pdf2image::Pages::Range(1..=8),
//! RenderOptionsBuilder::default().build()?,
//! );
//! println!("{:?}", pages.unwrap().len());
//!
//! Ok(())
//! }
//! ```
pub use ;
pub use ;
pub use ;
// re-export image crate
pub use image;