【发布时间】:2011-12-10 23:49:13
【问题描述】:
我已经搜索了这个问题的解决方案,但仍然找不到答案。任何帮助将不胜感激。
Document document = new Document();
Section section = document.AddSection();
Paragraph paragraph = section.AddParagraph();
paragraph.Format.Font.Color = Color.FromCmyk(100, 30, 20, 50);
paragraph.AddText("ąčęėįųųūū");
paragraph.Format.Font.Size = 9;
paragraph.Format.Alignment = ParagraphAlignment.Center;
</b>
<...>
在上述示例中,导出的 pdf 中不显示字符“ąčęėįųųūū”。
如何设置“MigraDoc”字符集?
【问题讨论】: