Aspose.Pdf for .NET添加附件到PDF文档_最新动态_新闻资讯_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 新闻资讯 > 最新动态 > Aspose.Pdf for .NET添加附件到PDF文档

Aspose.Pdf for .NET添加附件到PDF文档

 2014/5/6 12:49:02    程序员俱乐部  我要评论(0)
  • 摘要:程序员在使用Aspose.Pdffor.NET时如何用代码添加附件到PDF文档?这里我们分别用C#和VB两种示例代码展示给大家。首先要用需要添加的文件创建一个FileSpecification对象,还有文件说明。在这以后,FileSpecification对象可以应用集合的添加方法添加到Document对象EmbeddedFiles集合。该EmbeddedFiles集合包含所有添加到PDF文件中的附件。下面的代码片段展示了如何添加附件在一个PDF文档
  • 标签:.net for 文档 net 添加附件
class="topic_img" alt=""/>

  程序员在使用 Aspose.Pdf for .NET 时如何用代码添加附件到 PDF 文档?这里我们分别用 C# 和 VB 两种示例代码展示给大家。首先要用需要添加的文件创建一个 FileSpecification 对象,还有文件说明。在这以后,FileSpecification 对象可以应用集合的添加方法添加到 Document 对象 EmbeddedFiles 集合。该 EmbeddedFiles 集合包含所有添加到 PDF 文件中的附件。

  下面的代码片段展示了如何添加附件在一个 PDF 文档:

  C#

//open document Document pdfDocument = new Document ("input.pdf");
//setup new file to be added as attachment FileSpecification fileSpecification = new FileSpecification ("test.txt", "Sample text file");
//add attachment to document's attachment collection pdfDocument.EmbeddedFiles.Add (fileSpecification);
//save new output pdfDocument.Save ("output.pdf");

  VB.NET

'open document Dim pdfDocument As New Document ("input.pdf")
'setup new file to be added as attachment Dim fileSpecification As New FileSpecification ("test.txt", "Sample text file")
'add attachment to document's attachment collection pdfDocument.EmbeddedFiles.Add (fileSpecification)
'save new output pdfDocument.Save ("output.pdf")
发表评论
用户名: 匿名