Importer des annotations au format FDF dans un PDF via C#

Contents
[ ]

La classe PDFAnnotationEditor contient des méthodes pour travailler avec l’importation d’annotations depuis un fichier FDF. La méthode PdfAnnotationEditor.ImportAnnotationsFromFdf fournit la fonctionnalité pour importer des annotations d’un document FDF dans un fichier PDF.

De plus, la classe Form inclut la méthode Form.ImportFdf - importe le contenu des champs du fichier FDF et les place dans le nouveau PDF.

Le code suivant montre comment importer des annotations au format FDF dans un PDF avec la méthode Form.ImportFdf() :

// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ImportFDFByForm()
{
    // The path to the documents directory
    var dataDir = RunExamples.GetDataDir_AsposePdfFacades_Forms();

    using (var form = new Aspose.Pdf.Facades.Form(dataDir + "input.pdf"))
    {
        // Open FDF file
        using (var fdfInputStream = new FileStream(dataDir + "student.fdf", FileMode.Open))
        {
            form.ImportFdf(fdfInputStream);
        }
        // Save PDF document
        form.Save(dataDir + "ImportDataFromPdf_Form_out.pdf");
    }
}

Le code suivant montre comment importer des annotations au format FDF dans un PDF avec la méthode PdfAnnotationEditor.ImportAnnotationsFromFdf() :

// For complete examples and data files, visit https://github.com/aspose-pdf/Aspose.PDF-for-.NET
private static void ImportFdfByPdfAnnotationEditor()
{
    // The path to the documents directory
    var dataDir = RunExamples.GetDataDir_AsposePdfFacades_Forms();

    // Open PDF document
    using (var document = new Aspose.Pdf.Document(dataDir + "input.pdf"))
    {
        var editor = new Aspose.Pdf.Facades.PdfAnnotationEditor();
        // Bind PDF document
        editor.BindPdf(dataDir + "input.pdf");
        editor.ImportAnnotationsFromFdf(dataDir + "student.fdf");
        // Save PDF document
        editor.Save(dataDir + "ImportDataFromPdf_AnnotationEditor_out.pdf");  
    }
}