ImportAnnotationFromXfdf

ImportAnnotationFromXfdf(string, AnnotationType[])

从 XFDF 文件中导入指定的注释。

public void ImportAnnotationFromXfdf(string xfdfFile, AnnotationType[] annotType)
范围类型描述
xfdfFileString输入 XFDF 文件。
annotTypeAnnotationType[]要导入的注释数组。

例子

PdfAnnotationEditor editor = new PdfAnnotationEditor();
editor.BindPdf("example.pdf");
AnnotationType[] annotTypes = {AnnotationType.Highlight, AnnotationType.Text};
editor.ImportAnnotationFromXfdf("annots.xfdf", annotTypes);
editor.Save("example_out.pdf");

也可以看看


ImportAnnotationFromXfdf(Stream, AnnotationType[])

从 XFDF 数据流中导入指定的注解。

public void ImportAnnotationFromXfdf(Stream xfdfStream, AnnotationType[] annotType)
范围类型描述
xfdfStreamStream输入 XFDF 数据流。
annotTypeAnnotationType[]要导入的注释类型数组。

例子

PdfAnnotationEditor editor = new PdfAnnotationEditor();
editor.BindPdf("example.pdf");
AnnotationType[] annotTypes ={ AnnotationType.Highlight, AnnotationType.Line };
editor.ImportAnnotationFromXfdf(File.OpenRead("annots.xfdf"), annotTypes);
editor.Save("example_out.pdf");

也可以看看