我从 itextsharp 开始,想知道是否有任何理由为什么我在构建后设置短语的字体它不起作用。有什么理由,我错过了什么吗?
iTextSharp.text.Font f = PdfFontFactory.GetComic();
f.SetStyle(PdfFontStyle.BOLD);
Color c = Color.DarkRed;
f.SetColor(c.R,c.G,c.B);
f.Size = 20;
Document document = new Document();
try
{
PdfWriter.GetInstance(document, new System.IO.FileStream("PhraseTest.pdf", FileMode.Create));
document.SetPageSize(PageSize.A4);
document.Open();
Phrase titreFormules = new Phrase("Nos formules",f); //THIS WORKS
// titreFormules.Font = f; // THIS DOESN'T WORK!
document.Add(titreFormules);
document.Close();