参考书籍
这需要一个程序集,下载地址:
http://www.downcc.com/file/12604.html
下面我简单的做一个demo
创建一个控制台项目,在main 函数里面添加如下代码,运行
var document=new Document();
PdfWriter.GetInstance(document, new FileStream(@"D:2.pdf", FileMode.Append,FileAccess.Write));
document.Open();
document.Add(new Paragraph("hello pdf"));
document.Close();
这样最基本的pdf就生成了,至于后续的学习可以参照上面的书籍链接