文档彩票走势图>>Aspose.PDF使用教程>>Aspose.Pdf使用教程:删除PDF文件中的所有附件
Aspose.Pdf使用教程:删除PDF文件中的所有附件
前面的教程提到了如何从PDF文件中获取附件,此外Aspose.Pdf还可以删除PDF文件中的附件。要删除PDF文件中的所有附件,您只需要调用EmbeddedFiles集合的Delete方法,然后使用Document对象的save方法保存更新后的文件。
下面是删除PDF文件中的所有附件的代码示例:
C#
//open document Document pdfDocument = new Document("input.pdf"); //delete all attachments pdfDocument.EmbeddedFiles.Delete(); //save updated file pdfDocument.Save("output.pdf");
VB.NET
'open document{color} Dim pdfDocument As New Document("input.pdf") 'delete all attachments pdfDocument.EmbeddedFiles.Delete() 'save updated file pdfDocument.Save("output.pdf")