ImportAnnotationsFromXfdf

ImportAnnotationsFromXfdf(string)

Tüm açıklamaları XFDF dosyasından içe aktarır.

public void ImportAnnotationsFromXfdf(string xfdfFile)
ParametreTipTanım
xfdfFileStringGiriş XFDF dosyası.

Örnekler

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

Ayrıca bakınız


ImportAnnotationsFromXfdf(Stream)

Tüm açıklamaları XFDF veri akışından içe aktarır.

public void ImportAnnotationsFromXfdf(Stream xfdfStream)
ParametreTipTanım
xfdfStreamStreamGiriş XFDF veri akışı.

Örnekler

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

Ayrıca bakınız