为什么我的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;
答案 0 :(得分:0)
这些特殊字符是Unicode字符,因此您必须确保字体支持它们并在pdf.SetUnicode();
之前调用pdf.Close
。