网站首页 > 技术文章 正文
Aspose.PDF for .NET是一种高PDF处理和解析API,用于在跨平台应用程序中执行文档管理和操作任务。API可以轻松用于生成、修改、转换、渲染、保护和打印PDF文档,而无需使用Adobe Acrobat。此外,API还提供PDF压缩选项,表格创建和操作,图形和图像功能,广泛的超链接功能,印章和水印任务,扩展的安全控制和自定义字体处理。
【下载体验Aspose.PDF for .NET最新版】
在接下来的系列教程中,将为开发者带来Aspose.PDF for .NET的一系列使用教程,例如进行文档间的转换,如何标记PDF文件,如何使用表单和图表等等。
第一章:使用附件
附件可以包含各种各样的信息,并且可以是各种文件类型。想要向PDF文件添加附件只需两步:
- 使用要添加的文件和文件描述创建一个文件具体化对象。
- 使用集合的Add方法将Filspeciification对象添加到文档对象的EmbeddedFiles集合中。
该EmbeddedFiles集合包含PDF文件中的所有附件。以下代码段显示了如何在PDF文档中添加附件:
//文档目录的路径。 string dataDir = RunExamples。GetDataDir_AsposePdf_Attachments(); //打开文档 Document pdfDocument = new Document(dataDir + "AddAttachment.pdf" ); //设置要添加为附件的新文件 FileSpecification fileSpecification = new FileSpecification(dataDir + “ test.txt ”,“ Sample text file ”); //添加附件到文档的附件集合 pdfDocument.EmbeddedFiles.Add(fileSpecification); dataDir = dataDir + "AddAttachment_out.pdf" ; //保存新输出 pdfDocument.Save(dataDir);
从PDF文档获取所有附件
使用Aspose.PDF,可以从PDF文档中获取所有附件。当想要将文档与PDF分开保存,或者需要剥离PDF附件时,这非常有用。
要从PDF文件中获取所有附件只需两步:
- 循环遍历文档对象的EmbeddedFiles集合。EmbeddedFiles集合包含所有附件。这个集合的每个元素都表示一个文件具体化对象。Foreach循环通过EmbeddedFiles集合的每次迭代都返回一个filspeciification对象。
- 一旦对象可用,检索所有附加文件的属性或文件本身。
以下代码段显示如何从PDF文档中获取所有附件:
//文档目录的路径 string dataDir = RunExamples.GetDataDir_AsposePdf_Attachments(); //打开文档 Document pdfDocument = new Document(dataDir + "GetAlltheAttachments.pdf" ); //获取嵌入式文件集合 EmbeddedFileCollection embeddedFiles = pdfDocument.EmbeddedFiles; //获取嵌入文件的数量 Console.WriteLine( "Total files : {0}" , embeddedFiles.Count); int count = 1 ; //遍历集合以获取所有附件 foreach (FileSpecification fileSpecification in embeddedFiles) { Console.WriteLine( "Name: {0}" , fileSpecification.Name); Console.WriteLine( "Description: {0}" , fileSpecification.Description); Console.WriteLine( "Mime Type: {0}" , fileSpecification.MIMEType); //检查参数对象是否包含参数 if (fileSpecification.Params != null ) { Console.WriteLine( "CheckSum: {0}" , fileSpecification.Params.CheckSum); Console.WriteLine( "Creation Date: {0}" , fileSpecification.Params.CreationDate); Console.WriteLine( "Modification Date: {0}" , fileSpecification.Params.ModDate); Console.WriteLine( "Size: {0}" , fileSpecification.Params.Size); } //获取附件并写入文件或流 byte[] fileContent = new byte[fileSpecification.Contents.Length]; fileSpecification.Contents.Read(fileContent, 0 , fileContent.Length); FileStream fileStream = new FileStream(dataDir + count + "_out" + ".txt" , FileMode.Create); fileStream.Write(fileContent, 0 , fileContent.Length); fileStream.Close(); count+= 1 ;
获得单独的附件
为了获得单独的附件,我们可以在文档实例的EmbeddedFiles对象中指定附件索引。请尝试使用以下代码片段。
//文档目录的路径 string dataDir = RunExamples.GetDataDir_AsposePdf_Attachments(); //打开文档 Document pdfDocument = new Document(dataDir + "GetIndividualAttachment.pdf" ); //获取特定的嵌入文件 FileSpecification fileSpecification = pdfDocument.EmbeddedFiles[ 1 ]; //获取文件属性 Console.WriteLine( "Name: {0}" , fileSpecification.Name); Console.WriteLine( "Description: {0}" , fileSpecification.Description); Console.WriteLine( "Mime Type: {0}" , fileSpecification.MIMEType); //检查参数对象是否包含参数 if (fileSpecification.Params != null ) { Console.WriteLine( "CheckSum: {0}" , fileSpecification.Params.CheckSum); Console.WriteLine( "Creation Date: {0}" , fileSpecification.Params.CreationDate); Console.WriteLine( "Modification Date: {0}" , fileSpecification.Params.ModDate); Console.WriteLine( "Size: {0}" , fileSpecification.Params.Size); } //获取附件并写入文件或流 byte[] fileContent = new byte[fileSpecification.Contents.Length]; fileSpecification.Contents.Read(fileContent, 0 , fileContent.Length); FileStream fileStream = new FileStream(dataDir + "test_out" + ".txt" , FileMode.Create); fileStream.Write(fileContent, 0 , fileContent.Length); fileStream.Close();
从PDF文档中删除所有附件
Aspose.PDF可以从PDF文件中删除附件。PDF文档的附件保存在Document对象的EmbeddedFiles集合中。
要删除与PDF文件关联的所有附件需两步:
- 调用EmbeddedFiles集合的Delete方法。
- 使用Document对象的Save方法保存更新的文件。
//文档目录的路径 string dataDir = RunExamples.GetDataDir_AsposePdf_Attachments(); //打开文档 Document pdfDocument = new Document(dataDir + "DeleteAllAttachments.pdf" ); //删除所有附件 pdfDocument.EmbeddedFiles.Delete(); dataDir = dataDir + "DeleteAllAttachments_out.pdf" ; //保存更新的文件 pdfDocument.Save(dataDir);
获取附件信息
附件信息保存在filspeciification对象中,与文档对象的EmbeddedFiles集合中的其他附件一起收集。文件化对象提供了获取hteattchment信息的方法,例如:
- Name - 文件名。
- Description - 文件描述。
- MIMEType - 文件的MIME类型。
- Params-有关文件的参数信息。
要获取这些参数,请首先确保该Params属性不为null。EmbeddedFiles使用foreach循环遍历集合中的所有附件,或通过指定其索引值获取单个附件。以下代码段显示了如何获取有关特定附件的信息:
//文档目录的路径 string dataDir = RunExamples.GetDataDir_AsposePdf_Attachments(); //打开文档 Document pdfDocument = new Document(dataDir + "GetAttachmentInfo.pdf" ); //获取特定的嵌入文件 FileSpecification fileSpecification = pdfDocument.EmbeddedFiles[ 1 ]; //获取文件属性 Console.WriteLine( "Name: {0}" , fileSpecification.Name); Console.WriteLine( "Description: {0}" , fileSpecification.Description); Console.WriteLine( "Mime Type: {0}" , fileSpecification.MIMEType); //检查参数对象是否包含参数 if (fileSpecification.Params != null ) { Console.WriteLine( "CheckSum: {0}" , fileSpecification.Params.CheckSum); Console.WriteLine( "Creation Date: {0}" , fileSpecification.Params.CreationDate); Console.WriteLine( "Modification Date: {0}" , fileSpecification.Params.ModDate); Console.WriteLine( "Size: {0}" , fileSpecification.Params.Size); }
-- 未完待续 --
更多教程资源可关注ASPOSE技术交流QQ群(642018183)哦~欢迎交流讨论!
想要下载Aspose.PDF for .NET最新版可点击下方“了解更多”
↓↓↓
猜你喜欢
- 2024-10-11 让我们了解HTTP(3) 现在基于http3有哪些应用
- 2024-10-11 如何在Java中将DOCX转换为PDF java实现docx转pdf
- 2024-10-11 字节跳动《Python项目开发实战》高清版 PDF 开放下载,简直神了
- 2024-10-11 牛!字节跳动《算法中文手册》火了,完整版 PDF 开放下载!
- 2024-10-11 字节跳动把python入门知识点整理成手册了,高清PDF开放下载
- 2024-10-11 字节大佬熬夜肝出的《Python知识手册》,高清pdf开放下载
- 2024-10-11 看了这份《算法中文手册》笔记,就再也不怕字节了
- 2024-10-11 字节跳动《算法中文手册》火了,完整版 PDF 开放下载!
- 2024-10-11 字节跳动《Python项目开发实战》高清版 PDF 开放下载
- 2024-10-11 Linux 内核 | 网络流量限速方案大 PK
你 发表评论:
欢迎- 最近发表
-
- 在 Spring Boot 项目中使用 activiti
- 开箱即用-activiti流程引擎(active 流程引擎)
- 在springBoot项目中整合使用activiti
- activiti中的网关是干什么的?(activiti包含网关)
- SpringBoot集成工作流Activiti(完整源码和配套文档)
- Activiti工作流介绍及使用(activiti工作流会签)
- SpringBoot集成工作流Activiti(实际项目演示)
- activiti工作流引擎(activiti工作流引擎怎么用)
- 工作流Activiti初体验及在数据库中生成的表
- Activiti工作流浅析(activiti6.0工作流引擎深度解析)
- 标签列表
-
- oraclesql优化 (66)
- 类的加载机制 (75)
- feignclient (62)
- 一致性hash算法 (71)
- dockfile (66)
- 锁机制 (57)
- javaresponse (60)
- 查看hive版本 (59)
- phpworkerman (57)
- spark算子 (58)
- vue双向绑定的原理 (68)
- springbootget请求 (58)
- docker网络三种模式 (67)
- spring控制反转 (71)
- data:image/jpeg (69)
- base64 (69)
- java分页 (64)
- kibanadocker (60)
- qabstracttablemodel (62)
- java生成pdf文件 (69)
- deletelater (62)
- com.aspose.words (58)
- android.mk (62)
- qopengl (73)
- epoch_millis (61)
本文暂时没有评论,来添加一个吧(●'◡'●)