我正在创建一个带有html字符串的PDF然后使用HTMLWorker.ParseToList并将每个元素添加到列中。无论我尝试什么,我都无法改变字体。
当我添加它时,我试图将字体添加到每个元素: el.Font =次; 但这会引发错误。
以下是我目前的代码。我希望所有文字都出现在Times Roman中。
var specialConditionsText = "<p>Special Conditions</p><p>A. More</p><p>B. Section B</p><p>C. Section C</p><ul><li>Bullet 1</li><li>Bullet 2</li></ul><ol><li>Number list 1</li><li>Number List 2<ol><li>Number list sub</li></ol></li></ol><p><br></p>";
StyleSheet styles = new StyleSheet();
styles.LoadTagStyle(HtmlTags.UL, HtmlTags.INDENT, "14");
styles.LoadTagStyle(HtmlTags.OL, HtmlTags.INDENT, "14");
styles.LoadTagStyle(HtmlTags.LI, HtmlTags.LEADING, "18");
BaseFont bfTimes = BaseFont.CreateFont(BaseFont.TIMES_ROMAN, BaseFont.CP1252, false);
Font times = new Font(bfTimes, 12, Font.NORMAL);
using (StringReader sr = new StringReader(specialConditionsText))
{
//Get our raw PdfContentByte object letting us draw "above" existing content
PdfContentByte cb = pdfStamper.GetOverContent(11);
//Create a new ColumnText object bound to the above PdfContentByte object
ColumnText ct = new ColumnText(cb);
//Create a single column object spanning the entire page
ct.SetSimpleColumn(60, 190, 570, 720);
//Convert our HTML to iTextSharp elements
List<IElement> elements = iTextSharp.text.html.simpleparser.HTMLWorker.ParseToList(sr, styles);
//Loop through each element
foreach (IElement el in elements)
{
//Add the element to the ColumnText
el.Font = times;
ct.AddElement(el);
}
ct.Go();
}
答案 0 :(得分:0)
我找到的答案是:
FontFactory.RegisterDirectories();
styles.LoadTagStyle("body", "face", "times new roman");
styles.LoadTagStyle("body", "encoding", "Identity-H");
我使用的最终代码看起来像这样。希望它可以帮到某人。
specialConditionsText = HttpUtility.HtmlDecode(specialConditionsText);
specialConditionsText = specialConditionsText.Replace("<br>", "<br />");
specialConditionsText = specialConditionsText.Replace("<p> </p>", "<br />");
FontFactory.RegisterDirectories();
StyleSheet styles = new StyleSheet();
styles.LoadTagStyle(HtmlTags.UL, HtmlTags.INDENT, "14");
styles.LoadTagStyle(HtmlTags.OL, HtmlTags.INDENT, "14");
styles.LoadTagStyle(HtmlTags.BODY, HtmlTags.LEADING, "13");
styles.LoadTagStyle(HtmlTags.BODY, HtmlTags.FONTSIZE, "11");
styles.LoadTagStyle("body", "face", "times new roman");
styles.LoadTagStyle("body", "encoding", "Identity-H");
using (StringReader sr = new StringReader(specialConditionsText))
{
//Get our raw PdfContentByte object letting us draw "above" existing content
PdfContentByte cb = pdfStamper.GetOverContent(11);
//Create a new ColumnText object bound to the above PdfContentByte object
ColumnText ct = new ColumnText(cb);
//Create a single column object spanning the entire page
ct.SetSimpleColumn(85, 192, 530, 720);
//Convert our HTML to iTextSharp elements
List<IElement> elements = iTextSharp.text.html.simpleparser.HTMLWorker.ParseToList(sr, styles);
//Loop through each element
foreach (IElement el in elements)
{
//Add the element to the ColumnText
ct.AddElement(el);
}
ct.Go();
}
答案 1 :(得分:0)
您可以使用以下代码添加所需字体的文本。这使用addtext函数而不是addelement,然后使用短语(甚至可以使用chunk)。
ct.AddText(new Phrase(el.ToString(), times));
您可以使用其中一种方法(FontFactory.GetFont,BaseFont.CreateFont)来创建所需的字体样式。
检查以下链接,了解有关使用itextsharp格式化的更多详细信息: http://www.mikesdotnetting.com/article/89/itextsharp-page-layout-with-columns