Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
Aspose.PDF for .NETは、PDF文書の編集に関して機能が豊富なコンポーネントです。XFDFはPDFフォーム操作の重要な側面であることから、Aspose.PDF for .NETのAspose.Pdf.Facades名前空間はこれを非常によく考慮し、XFDFファイルに注釈データをインポートおよびエクスポートするためのメソッドを提供しています。
PDFAnnotationEditorクラスには、XFDFファイルへの注釈のインポートとエクスポートに関する2つのメソッドがあります。ExportAnnotationsXfdfメソッドは、PDF文書からXFDFファイルに注釈をエクスポートする機能を提供し、ImportAnnotationFromXfdfメソッドは、既存のXFDFファイルから注釈をインポートすることを可能にします。注釈をインポートまたはエクスポートするには、注釈の種類を指定する必要があります。これらの種類を列挙型の形式で指定し、この列挙型をこれらのメソッドのいずれかに引数として渡すことができます。このようにして、指定された種類の注釈のみがXFDFファイルにインポートまたはエクスポートされます。
次のコードスニペットは、Aspose.PDF.Drawingライブラリでも動作します。
次のコードスニペットは、注釈をXFDFファイルにエクスポートする方法を示しています:
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ExportAnnotationsToXfdf()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Annotations();
// Create PdfAnnotationEditor object
using (var annotationEditor = new Aspose.Pdf.Facades.PdfAnnotationEditor())
{
// Bind PDF document
annotationEditor.BindPdf(dataDir + "AnnotationDemo1.pdf");
// Define the annotation types to export
var annotType = new Aspose.Pdf.Annotations.AnnotationType[] { Aspose.Pdf.Annotations.AnnotationType.Line, Aspose.Pdf.Annotations.AnnotationType.Square };
// Export annotations to XFDF file
using (var fileStream = File.OpenWrite(dataDir + "exportannotations_out.xfdf"))
{
annotationEditor.ExportAnnotationsXfdf(fileStream, 1, 1, annotType);
fileStream.Flush();
}
}
}
次のコードスニペットは、XFDFファイルから注釈をインポートする方法を説明しています:
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ImportAnnotationFromXfdf()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Annotations();
// Create PdfAnnotationEditor object
using (var annotationEditor = new Aspose.Pdf.Facades.PdfAnnotationEditor())
{
// Create PDF document
using (var document = new Aspose.Pdf.Document())
{
// Add page
var page = document.Pages.Add();
// Bind PDF document
annotationEditor.BindPdf(document);
// Define the export file name
var exportFileName = dataDir + "exportannotations.xfdf";
// Import annotations from the XFDF file
annotationEditor.ImportAnnotationsFromXfdf(exportFileName);
// Save PDF document
document.Save(dataDir + "ImportAnnotationFromXfdf_out.pdf");
}
}
}
以下のコードでは、ImportAnnotationsメソッドを使用して、別のPDF文書から直接注釈をインポートできます。
// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ImportAnnotationFromPDF()
{
// The path to the documents directory
var dataDir = RunExamples.GetDataDir_AsposePdf_Annotations();
// Open PDF document
using (var documentFrom = new Aspose.Pdf.Document(dataDir + "some_doc.pdf"))
{
// Create PDF document
using (var documentTo = new Aspose.Pdf.Document())
{
// Add page
var page = documentTo.Pages.Add();
// Export/import
using (var ms = new MemoryStream())
{
documentFrom.ExportAnnotationsToXfdf(ms);
documentTo.ImportAnnotationsFromXfdf(ms);
}
// Save PDF document
documentTo.Save(dataDir + "AnnotationDemo3_out.pdf");
}
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.