Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
XFDFはXML Forms Data Formatの略です。これはXMLベースのファイル形式です。このファイル形式は、PDFフォームに含まれるフォームデータや注釈を表すために使用されます。XFDFはさまざまな目的で使用できますが、私たちの場合、他のコンピュータやサーバーにフォームデータや注釈を送信または受信するため、またはフォームデータや注釈をアーカイブするために使用できます。この記事では、Aspose.Pdf.Facadesがこの概念をどのように考慮し、注釈データをXFDFファイルにインポートおよびエクスポートする方法を見ていきます。
Aspose.PDF for .NETは、PDF文書の編集に関して機能が豊富なコンポーネントです。XFDFはPDFフォーム操作の重要な側面であるため、Aspose.Pdf.Facades名前空間はこれを非常によく考慮し、XFDFファイルに注釈データをインポートおよびエクスポートするためのメソッドを提供しています。
PDFAnnotationEditorクラスには、XFDFファイルへの注釈のインポートとエクスポートに関する2つのメソッドがあります。ExportAnnotationsXfdfメソッドは、PDF文書からXFDFファイルに注釈をエクスポートする機能を提供し、ImportAnnotationFromXfdfメソッドは、既存のXFDFファイルから注釈をインポートすることを可能にします。注釈をインポートまたはエクスポートするには、注釈タイプを指定する必要があります。これらのタイプを列挙型の形式で指定し、この列挙型をこれらのメソッドのいずれかに引数として渡すことができます。この方法で、指定されたタイプの注釈のみがXFDFファイルにインポートまたはエクスポートされます。
以下のコードスニペットは、XFDFファイルに注釈をインポートする方法を示しています:
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ImportAnnotation()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdfFacades_Annotations();
// Sources of PDF with annotations
var sources = new string[] { dataDir + "ImportAnnotations.pdf" };
using (var annotationEditor = new Aspose.Pdf.Facades.PdfAnnotationEditor())
{
// Bind PDF document
annotationEditor.BindPdf(dataDir + "input.pdf");
annotationEditor.ImportAnnotations(sources);
// Save PDF document
annotationEditor.Save(dataDir + "ImportAnnotations_out.pdf");
}
}
次のコードスニペットは、XFDFファイルへの注釈のインポート/エクスポートを説明しています:
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ImportExportXFDF01()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdfFacades_Annotations();
using (var annotationEditor = new Aspose.Pdf.Facades.PdfAnnotationEditor())
{
// Bind PDF document
annotationEditor.BindPdf(dataDir + "ExportAnnotations.pdf");
using (FileStream xmlOutputStream = File.OpenWrite(dataDir + "exportannotations_out.xfdf"))
{
annotationEditor.ExportAnnotationsToXfdf(xmlOutputStream);
}
// Create PDF document
using (var document = new Aspose.Pdf.Document())
{
// Add page
document.Pages.Add();
// Bind PDF document
annotationEditor.BindPdf(document);
annotationEditor.ImportAnnotationsFromXfdf(File.OpenRead(dataDir + "exportannotations_out.xfdf"));
// Save PDF document
annotationEditor.Save(dataDir + "ImportedAnnotation_out.pdf");
}
}
}
この方法で、指定されたタイプの注釈のみがXFDFファイルにインポートまたはエクスポートされます。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ImportExportXFDF02()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdfFacades_Annotations();
using (var annotationEditor = new Aspose.Pdf.Facades.PdfAnnotationEditor())
{
// Bind PDF document
annotationEditor.BindPdf(dataDir + "ExportAnnotations.pdf");
// Export annotations
using (FileStream xmlOutputStream = File.OpenWrite(dataDir + "exportannotations_out.xfdf"))
{
var annotationTypes = new[] {AnnotationType.FreeText, AnnotationType.Text};
annotationEditor.ExportAnnotationsXfdf(xmlOutputStream, 1, 5, annotationTypes);
}
// Import annotations
using (var document = new Aspose.Pdf.Document(dataDir + "input.pdf"))
{
// Add page
document.Pages.Add();
// Bind PDF document
annotationEditor.BindPdf(document);
annotationEditor.ImportAnnotationsFromXfdf(File.OpenRead(dataDir + "annotations.xfdf"));
// Save PDF document
annotationEditor.Save(dataDir + "ImportedAnnotation_XFDF02_out.pdf");
}
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.