1

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

1 回答 1

0

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

于 2016-07-28T09:16:23.940 回答