我有问题。如果我创建一个段落,给它我的字符串姓氏的值,我不知道,如何将此后的段落样式赋予PDF文件this -> document.Add(surnameValue);
Paragraph surnameValue = new Paragraph(surname);
答案 0 :(得分:0)
您可以在iTextSharp中添加如下字体:
BaseFont bfTimes = BaseFont.CreateFont(BaseFont.TIMES_ROMAN, BaseFont.CP1252, false);
Font times = new Font(bfTimes, 12, Font.BOLD, Color.RED);
Paragraph testP = new Paragraph("This is a Red Font Test using Times Roman", times)
修改强>
此处Documentation关于字体。