export_xfdf
Экспорт из ранее открытого PDF‑документа с AcroForm в XFDF‑документ с именем файла.
pub fn export_xfdf(&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>> {
// Откройте PDF‑документ с именем файла
let pdf = Document::open("sample.pdf")?;
// Экспорт из ранее открытого PDF‑документа с AcroForm в XFDF‑документ
pdf.export_xfdf("sample.xfdf")?;
Ok(())
}