文件名称:iTextSharp使用手册.pdf
文件大小:777KB
文件格式:PDF
更新时间:2023-06-11 10:53:59
iTextSharp使用手册pd
iTextSharp使用手册pdf中文版 第一章 创建一个 Document 利用 iText 五步创建一个 PDF文件: helloword 。 第一步,创建一个 iTextSharp.text.Document 对象的实例: Document document = new Document(); 第二步,为该 Document创建一个 Writer 实例: PdfWriter.getInstance(document, new FileStream("Chap0101.pdf", FileMode.Create)); 第三步,打开当前 Document document.Open(); 第四步,为当前 Document添加内容: document.Add(new Paragraph("Hello World")); 第五步,关闭 Document document.Close();