在itextsharp中更改文本样式

时间:2015-08-20 06:50:04

标签: c# itextsharp

我想使用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);
}

1 个答案:

答案 0 :(得分:0)

iTextSharp.text.pdf.BaseFont.TIMES_ROMAN更改为iTextSharp.text.pdf.BaseFont.TIMES_BOLD或使用任何其他记录的方式使用粗体字。