Trabajando con Archivos Adjuntos
Contents
[
Hide
]
Cómo agregar un archivo adjunto usando PdfContentEditor
public static void AttachmentDemo01()
{
PdfContentEditor editor = new PdfContentEditor(new Document(_dataDir + "sample.pdf"));
editor.addDocumentAttachment(_dataDir + "file_example_MP3_700KB.mp3", "Archivo MP3 de demostración");
editor.save(_dataDir + "PdfContentEditorDemo07.pdf");
}
public static void AttachmentDemo02()
{
PdfContentEditor editor = new PdfContentEditor(new Document(_dataDir + "sample.pdf"));
FileInputStream fileStream=null;
try {
fileStream = new FileInputStream(_dataDir + "file_example_MP3_700KB.mp3");
} catch (FileNotFoundException e) {
e.printStackTrace();
}
editor.addDocumentAttachment(fileStream, "file_example_MP3_700KB.mp3", "Archivo MP3 de demostración");
editor.save(_dataDir + "PdfContentEditorDemo08.pdf");
}
Cómo eliminar un adjunto usando PdfContentEditor
public static void DeleteAllAttachments()
{
AttachmentDemo02();
PdfContentEditor editor = new PdfContentEditor(new Document(_dataDir + "PdfContentEditorDemo07.pdf"));
editor.deleteAttachments(); // Eliminar adjuntos
editor.save(_dataDir + "PdfContentEditorDemo09.pdf"); // Guardar el documento
}