改变文本样式在itextsharp

本文关键字:itextsharp 样式 文本 改变 | 更新日期: 2023-09-27 18:09:02

我想使用itextsharp将字体加粗。下面是我的代码

foreach (DataGridViewColumn column in dataGridView1.Columns)
{
      iTextSharp.text.pdf.BaseFont bf = iTextSharp.text.pdf.BaseFont.CreateFont(iTextSharp.text.pdf.BaseFont.TIMES_ROMAN, iTextSharp.text.pdf.BaseFont.CP1252, iTextSharp.text.pdf.BaseFont.EMBEDDED);
      //  iTextSharp.text.Font font1 = new iTextSharp.text.Font("iTextSharp.text.Font", 10, Font.Bold);
      //FontFactory.GetFont("TIMES_ROMAN", 10, Font.Bold);
      iTextSharp.text.Font font = new iTextSharp.text.Font(bf, 10);
      //iTextSharp.text.Font font = new iTextSharp.text.Font(9); 
      PdfPCell cell = new PdfPCell(new Phrase(column.HeaderText, font));
      cell.BackgroundColor = new iTextSharp.text.Color(240, 240, 240);                                  
      pdfTable.AddCell(cell);
}

改变文本样式在itextsharp

iTextSharp.text.pdf.BaseFont.TIMES_ROMAN更改为iTextSharp.text.pdf.BaseFont.TIMES_BOLD或使用任何其他文档中的方法来使用粗体