page_to_tiff
Convierte y guarda la página especificada como una imagen TIFF.
pub fn page_to_tiff(&self, num: i32, resolution_dpi: i32, filename: &str) -> Result<(), PdfError>
Arguments
- num - the page number (1-based)
- resolution_dpi - the resolution in DPI
- filename - the path to the output file
Returns
- Ok(()) - if the operation succeeds
- Err(PdfError) - if the operation fails
Example
use asposepdf::Document;
fn main() -> Result<(), Box<dyn std::error::Error>> {
// Abrir un documento PDF con nombre de archivo
let pdf = Document::open("sample.pdf")?;
// Convertir y guardar la página especificada como imagen Tiff
pdf.page_to_tiff(1, 100, "sample_page1.tiff")?;
Ok(())
}