Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
rustybara = { version = "0.1.3", features = ["static"] }
use rustybara::PdfPipeline; fn main() -> rustybara::Result<()> { // Trim marks, expand to 9pt bleed, save PdfPipeline::open("input.pdf")? .trim()? .resize(9.0)? .save_pdf("output.pdf")?; Ok(()) }