csharp 使用iTextSharp库根据文本框中的信息创建一个简单的PDF文件。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 使用iTextSharp库根据文本框中的信息创建一个简单的PDF文件。相关的知识,希望对你有一定的参考价值。

using iTextSharp.text;
using iTextSharp.text.pdf;
using System.IO;
            

private void printButton_Click(object sender, EventArgs e)
{
  Document doc = new Document(iTextSharp.text.PageSize.LETTER, 10, 10, 10, 10);
  PdfWriter writer = PdfWriter.GetInstance(doc, new FileStream("report.pdf", FileMode.Create));
  doc.Open(); //opens document to write
  //contents
  Paragraph paragraph1 = new Paragraph("Report");
  Paragraph paragraph2 = new Paragraph(this.textBoxName.Text +" "+ this.textBoxSurname.Text);
  Paragraph paragraph3 = new Paragraph(this.textBoxAge.Text);
  doc.Add(paragraph1);
  doc.Add(paragraph2);
  doc.Add(paragraph3);
  doc.Close();
}

以上是关于csharp 使用iTextSharp库根据文本框中的信息创建一个简单的PDF文件。的主要内容,如果未能解决你的问题,请参考以下文章

使用 iTextSharp 删除 PDF 不可见对象

csharp iTextSharp的

ITextSharp HTML到PDF?

如何使用 itextsharp 从 PDF 的列表框中检索用户选择的索引?

使用iTextSharp获取复选框的导出值

使用 itextsharp 将图像 html 旁边的文本放置到 pdf