export_xml
Экспорт из ранее открытого PDF‑документа с AcroForm в XML‑документ с именем файла.
pub fn export_xml(&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 в XML‑документ
pdf.export_xml("sample.xml")?;
Ok(())
}