大家好,欢迎来到IT知识分享网。
itext7 可对PDF进行生成、修改、内容提取、信息编辑、区域截取、标注添加等功能,但不能对PDF进行查看浏览。
itext7有开源版本,有java和c#的版本。这里仅介绍c#的版本的开发。
下面说一下itext7怎样进行编译及开发。
1.在Githup上下载itext7版本源代码代码,地址为:https://github.com/itext/itext7-dotnet。
-
下载下来后编译iTextCore工程。在编译过程中,会有一些报错,主要是几个DLL引用未找到。例如,Common.Logging,BouncyCastle.Crypto等。这些DLL可以在网上下载到。
-
编译过程中可以把tests的工程都去掉,那是在开源开发过程中做测试用的,对于我们应用开发没用。
-
编译通过后,新建一个工程,应用上面编译通的相关itext工程组件,即可操作PDF文件。新建一个PDF代码如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using iText.Kernel.Pdf;
using iText.Layout;
using iText.Layout.Element;
namespace PDFEdit
{
public partial class C01E01_HelloWorld : Form
{
public C01E01_HelloWorld()
{
InitializeComponent();
string DEST = "F:\\test.pdf";
CreatePdf(DEST);
}
/// <exception cref="System.IO.IOException"/>
public void CreatePdf(String dest)
{
//Initialize PDF writer
PdfWriter writer = new PdfWriter(dest);
//Initialize PDF document
PdfDocument pdf = new PdfDocument(writer);
// Initialize document
Document document = new Document(pdf);
//Add paragraph to the document
document.Add(new Paragraph("Hello World!"));
//Close document
document.Close();
}
}
}
- 编译通后的压缩包太大,上传不了。需要的话找我要。
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/23903.html