pdf_oxide_cli 0.3.24

CLI for pdf-oxide — the fastest PDF toolkit. 22 commands: text extraction, PDF to markdown, search, merge, split, images, compress, encrypt, watermark, forms, and more.
Documentation
use pdf_oxide::rendering::{ImageFormat, RenderOptions};
use std::path::Path;

pub fn run(
    file: &Path,
    dpi: u32,
    format: &str,
    quality: u8,
    pages: Option<&str>,
    output: Option<&Path>,
    password: Option<&str>,
) -> pdf_oxide::Result<()> {
    let mut doc = super::open_doc(file, password)?;
    let page_count = doc.page_count()?;
    let page_indices = super::resolve_pages(pages, page_count)?;

    let out_dir = output.unwrap_or_else(|| Path::new("."));
    if page_indices.len() > 1 || out_dir.is_dir() {
        std::fs::create_dir_all(out_dir)?;
    }

    let img_format = match format.to_lowercase().as_str() {
        "jpeg" | "jpg" => ImageFormat::Jpeg,
        _ => ImageFormat::Png,
    };

    let mut options = RenderOptions::with_dpi(dpi);
    options.format = img_format;
    options.jpeg_quality = quality;

    let stem = file.file_stem().and_then(|s| s.to_str()).unwrap_or("page");
    let ext = match img_format {
        ImageFormat::Png => "png",
        ImageFormat::Jpeg => "jpg",
    };

    for &page_idx in &page_indices {
        let img = pdf_oxide::rendering::render_page(&mut doc, page_idx, &options)?;

        let out_path = match output {
            Some(out) if page_indices.len() == 1 && !out.is_dir() => out.to_path_buf(),
            _ => out_dir.join(format!("{}_{}.{}", stem, page_idx + 1, ext)),
        };

        img.save(&out_path)?;
        eprintln!("Rendered page {} to {}", page_idx + 1, out_path.display());
    }

    Ok(())
}