如何在 C# 中展平 PDF 表单字段?Aspose.PDF几行代码帮助回答这个问题
2021/7/19 14:37:04
本文主要是介绍如何在 C# 中展平 PDF 表单字段?Aspose.PDF几行代码帮助回答这个问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
当您想将 PDF 表单字段与 .NET 应用程序中的内容合并,因此这些字段不可编辑时,您想知道如何在 C# 代码中拼合 PDF 表单字段?Aspose.PDF for .NET API用几行代码帮助回答这个问题。
使用此 .NET API,可以一次展平基于 acroform 的PDF、所有表单字段或选择特定字段以在您的 C# 应用程序中展平。ASP.NET Web 应用程序、Windows 桌面应用程序或其他 .NET 平台的代码相同。
Aspose.PDF for .NET是用于.NET Core的高级PDF处理API,可以在跨平台应用程序中轻松生成,修改,转换,呈现,保护和打印文档。无需使用Adobe Acrobat。(下载Aspose.PDF安装包)
在 C# 中展平 PDF 表单字段的步骤
- 为 .NET NuGet 包安装Aspose.PDF
- 包括Aspose.PDF和Aspose.PDF.Facades命名空间
- 使用许可证类设置 Aspose 许可证
- 创建 Form 类的实例
- 绑定要拼合的 PDF 文件
- 使用FlattenAllField 方法合并所有表单域
- 使用 FlattenField 方法展平特定字段
- 最后,保存拼合后的输出PDF文件
在 C# 中展平 PDF 表单字段的代码
代码如下:
using System; //Add Aspose.Pdf for .NET package reference //Use following namespaces to flatten PDF form Fields using Aspose.Pdf; using Aspose.Pdf.Facades; namespace FlattenPDFFormFields { class Program { static void Main(string[] args) { //Set Aspose license before flattening PDF form fields //with the help of Aspose.Pdf for .NET Aspose.Pdf.License AsposePDFLicense = new Aspose.Pdf.License(); AsposePDFLicense.SetLicense(@"c:\asposelicense\license.lic"); //create an object of Form class to initiate form field flattening Form PDFFormToBeFlattened = new Form(); //Bind the PDF file which contains the form fields to be flattened PDFFormToBeFlattened.BindPdf("SamplePDFFormwithFields.pdf"); //Use FlattenAllFields method to flatten all of the fields in the //PDF form loaded above PDFFormToBeFlattened.FlattenAllFields(); //Save output PDF file with form fields flattened using Save method //of Form object PDFFormToBeFlattened.Save("OutputPDFwithFlattenedFormFields.pdf"); } } }
以下 C# 示例使用 FlattenField 方法将特定字段与 PDF 文件合并。通过提供字段名称作为参数,您可以使用此方法展平任意数量的字段。
在 C# 中展平单个 PDF 表单字段的代码
using System; //Add Aspose.Pdf for .NET package reference //Use following namespaces to flatten PDF form Fields using Aspose.Pdf; using Aspose.Pdf.Facades; namespace FlattenPDFFormFields { class Program { static void Main(string[] args) { //Set Aspose license before flattening PDF form fields //with the help of Aspose.Pdf for .NET Aspose.Pdf.License AsposePDFLicense = new Aspose.Pdf.License(); AsposePDFLicense.SetLicense(@"c:\asposelicense\license.lic"); //create an object of Form class to initiate form field flattening Form PDFFormToBeFlattened = new Form(); //Bind the PDF file which contains the form fields to be flattened PDFFormToBeFlattened.BindPdf("SamplePDFFormwithFields.pdf"); //Use FlattenField method and specify the name of the particular field //when flattening only a single form field PDFFormToBeFlattened.FlattenField("TextFormField"); //Save output PDF file with form fields flattened using Save method //of Form object PDFFormToBeFlattened.Save("OutputPDFwithFlattenedFormFields.pdf"); } } }
请注意,在 C# 中拼合 PDF 表单字段时,您不需要Adobe Acrobat或任何其他 PDF 编辑软件。此 API 包含在 .NET 中以编程方式展平 pdf 所需的一切。
如果您仍然不清楚如何在 C# 中展平 PDF 表单字段, 可加入Aspose资源分享交流群(761297826)。
这篇关于如何在 C# 中展平 PDF 表单字段?Aspose.PDF几行代码帮助回答这个问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#
- 2024-01-24Advanced .Net Debugging 1:你必须知道的调试工具
- 2024-01-24.NET集成IdGenerator生成分布式全局唯一ID
- 2024-01-23用CI/CD工具Vela部署Elasticsearch + C# 如何使用