请您在下面给出的代码中提供建议,使其成为粗体。如何使大胆的文字'左'和'右'
FileStream fs = new FileStream("Chapter1_Example1.pdf",
FileMode.Create, FileAccess.Write, FileShare.None);
Document doc = new Document();
PdfWriter writer = PdfWriter.GetInstance(doc, fs);
doc.Open();
Chunk glue = new Chunk(new VerticalPositionMark());
Paragraph p = new Paragraph("Text to the left");
p.Add(new Chunk(glue));
p.Add("Text to the right");
doc.Add(p);
doc.Close();
答案 0 :(得分:0)
您没有定义字体,因此使用默认字体Helvetica。如果您想使用粗体字体,则需要为Font
创建Paragraph
对象。
例如:
Font boldFont = FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 12);
Paragraph p = new Paragraph("Text to the left", boldFont);
如果您只想将两个单词加粗,则需要将Paragraph
拆分为不同Chunk
个不同字体的对象。官方网站上对此进行了解释:How can I use regular and bold in a single String?
这是一个简单的例子(注意有不同的方法来创建Font
对象):
Font regular = new Font(FontFamily.HELVETICA, 12);
Font bold = Font font = new Font(FontFamily.HELVETICA, 12, Font.BOLD);
Paragraph p = new Paragraph("NAME: ", bold);
p.Add(new Chunk("Pol", regular));