ImportAnnotationFromXfdf
ImportAnnotationFromXfdf(string, AnnotationType[])
从 XFDF 文件中导入指定的注释。
public void ImportAnnotationFromXfdf(string xfdfFile, AnnotationType[] annotType)
范围 | 类型 | 描述 |
---|---|---|
xfdfFile | String | 输入 XFDF 文件。 |
annotType | AnnotationType[] | 要导入的注释数组。 |
例子
PdfAnnotationEditor editor = new PdfAnnotationEditor();
editor.BindPdf("example.pdf");
AnnotationType[] annotTypes = {AnnotationType.Highlight, AnnotationType.Text};
editor.ImportAnnotationFromXfdf("annots.xfdf", annotTypes);
editor.Save("example_out.pdf");
也可以看看
- enum AnnotationType
- class PdfAnnotationEditor
- 命名空间 Aspose.Pdf.Facades
- 部件 Aspose.PDF
ImportAnnotationFromXfdf(Stream, AnnotationType[])
从 XFDF 数据流中导入指定的注解。
public void ImportAnnotationFromXfdf(Stream xfdfStream, AnnotationType[] annotType)
范围 | 类型 | 描述 |
---|---|---|
xfdfStream | Stream | 输入 XFDF 数据流。 |
annotType | AnnotationType[] | 要导入的注释类型数组。 |
例子
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");
也可以看看
- enum AnnotationType
- class PdfAnnotationEditor
- 命名空间 Aspose.Pdf.Facades
- 部件 Aspose.PDF