Aspose.Pdf 波兰语字符

Aspose.Pdf Polish Characters

为什么我的 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;

那些特殊字符是Unicode字符,所以你必须确保你的字体支持它们并在pdf.Close之前调用pdf.SetUnicode();