ImportAnnotationsFromXfdf

ImportAnnotationsFromXfdf(string)

Importe toutes les annotations du fichier XFDF.

public void ImportAnnotationsFromXfdf(string xfdfFile)
ParamètreTaperLa description
xfdfFileStringLe fichier XFDF d’entrée.

Exemples

PdfAnnotationEditor editor = new PdfAnnotationEditor();
editor.BindPdf("example.pdf");
editor.ImportAnnotationsFromXfdf("annots.xfdf");
editor.Save("example_out.pdf");

Voir également


ImportAnnotationsFromXfdf(Stream)

Importe toutes les annotations du flux de données XFDF.

public void ImportAnnotationsFromXfdf(Stream xfdfStream)
ParamètreTaperLa description
xfdfStreamStreamLe flux de données XFDF d’entrée.

Exemples

PdfAnnotationEditor editor = new PdfAnnotationEditor();
editor.BindPdf("example.pdf");
editor.ImportAnnotationsFromXfdf(File.OpenRead("annots.xfdf"));
editor.Save("example_out.pdf");

Voir également