Aspose.Pdf波兰人物

时间:2016-07-28 09:10:27

标签: c# aspose aspose.pdf

为什么我的pdf不显示波兰字符?

MemoryStream ms = new MemoryStream();
Pdf pdf = new Pdf(ms);
Section section = pdf.Sections.Add();
var txt = new Text("aąbcćde");
txt.TextInfo.FontName = "calibri";
section.Paragraphs.Add(txt);
pdf.Close();
byte[] bytes = ms.ToArray();
return bytes;

1 个答案:

答案 0 :(得分:0)

这些特殊字符是Unicode字符,因此您必须确保字体支持它们并在pdf.SetUnicode();之前调用pdf.Close