save_as

Saves the previously opened PDF-document with a new filename.

pub fn save_as(&self, filename: &str) -> Result<(), PdfError>

Arguments

  • 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>> {
    // Create a new PDF-document
    let pdf = Document::new()?;

    // Save the PDF-document with new filename
    pdf.save_as("sample_save_as.pdf")?;

    Ok(())
}