添付ファイルの操作
Contents
[
Hide
]
PdfContentEditorを使用して添付ファイルを追加する方法
public static void AttachmentDemo01()
{
PdfContentEditor editor = new PdfContentEditor(new Document(_dataDir + "sample.pdf"));
editor.addDocumentAttachment(_dataDir + "file_example_MP3_700KB.mp3", "デモ MP3 ファイル");
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", "デモ MP3 ファイル");
editor.save(_dataDir + "PdfContentEditorDemo08.pdf");
}
添付ファイルを削除する方法 PdfContentEditor を使用する
public static void DeleteAllAttachments()
{
AttachmentDemo02();
PdfContentEditor editor = new PdfContentEditor(new Document(_dataDir + "PdfContentEditorDemo07.pdf"));
editor.deleteAttachments();
editor.save(_dataDir + "PdfContentEditorDemo09.pdf");
}