rusty_pdf 0.21.0

Crate adding text and images to existing pdf files
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug)]
pub enum Error {
    LoPdfError(lopdf::Error),
    Other(String),
}

impl From<lopdf::Error> for Error {
    fn from(err: lopdf::Error) -> Self {
        Self::LoPdfError(err)
    }
}