Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
A classe PDFAnnotationEditor contém métodos para trabalhar com a importação de anotações de arquivos FDF. O método PdfAnnotationEditor.ImportAnnotationsFromFdf fornece a funcionalidade para importar anotações de um documento FDF para um arquivo PDF.
Além disso, a Classe Form inclui o método Form.ImportFdf - importa o conteúdo dos campos do arquivo FDF e os coloca no novo PDF.
O seguinte trecho de código mostra como importar anotações no formato FDF para PDF com o método 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");
}
}
O próximo trecho de código mostra como importar anotações no formato FDF para PDF com o método 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");
}
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.