如何设置pdfptable的字体?
答案 0 :(得分:6)
创建短语时,必须在每个单元格中设置字体:
Dim yourFont As BaseFont = BaseFont.CreateFont( _
Current.Server.MapPath("~/fonts/somefont.TTF"), _
BaseFont.WINANSI, BaseFont.EMBEDDED)
Dim mainFont As New Font(yourFont, SOME_FONT_SIZE, Font.NORMAL)
Dim cell As New PdfPCell(New Phrase("some text", mainFont))
yourTable.Add(cell)
答案 1 :(得分:2)
您需要创建一个“基本字体”对象,该对象与iTextSharp中的常规字体对象略有不同。您可以将字体分配给为PdfPTable创建的每个元素(短语,段落等)。
Dim bfR As iTextSharp.text.pdf.BaseFont
bfR = iTextSharp.text.pdf.BaseFont.CreateFont("verdana.ttf", iTextSharp.text.pdf.BaseFont.IDENTITY_H, iTextSharp.text.pdf.BaseFont.EMBEDDED)
我在这里使用IDENTITY_H属性,以便启用对其他字母的支持。
答案 2 :(得分:2)
属性PdfPTable具有属性DefaultCell,您可以设置PdfPCell元素的默认属性:
//C#
tableInstance.DefaultCell.Phrase = new Phrase() { Font = yourFont };