export_xml
Exportaciones del PDF-document previamente abierto con AcroForm a XML-document con nombre de archivo.
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>> {
// Abrir un documento PDF con nombre de archivo
let pdf = Document::open("sample.pdf")?;
// Exportar del PDF-document previamente abierto con AcroForm a XML-document
pdf.export_xml("sample.xml")?;
Ok(())
}