c# – 使用unicode字符填写pdf表单

前端之家收集整理的这篇文章主要介绍了c# – 使用unicode字符填写pdf表单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图用c#插入一些unicode字符(阿拉伯语)到PDF格式我使用iTextSharp库但是当我插入字符并在PDF文件中保存字符时,unicode字符不会显示,直到我双击字符的位置应该出现.
string pdfTemplate = @"c:\po.pdf";
string newFile = @"g:\test\completed_fw4.pdf";
PdfReader pdfReader = new PdfReader(pdfTemplate);
PdfStamper pdfStamper = new PdfStamper(pdfReader,new FileStream(newFile,FileMode.Create));
AcroFields pdfFormFields = pdfStamper.AcroFields;
pdfFormFields.SetField("position",TextBox1.Text);
pdfStamper.FormFlattening = false;
// close the pdf
pdfStamper.Close();

解决方法

有几种方法可以解决这个问题,但最终需要指定一种能够呈现Unicode内容的字体.

首先,创建一个指向Unicode字体的BaseFont对象,我在下面使用Arial Unicode:

var arialFontPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Fonts),"ARIALUNI.TTF");
var arialBaseFont = BaseFont.CreateFont(arialFontPath,BaseFont.IDENTITY_H,BaseFont.EMBEDDED);

然后,您可以单独设置每个字段的字体属性

pdfFormFields.SetFieldProperty("position","textfont",arialBaseFont,null);

或者您可以添加文档范围的替换字体:

pdfFormFields.AddSubstitutionFont(arialBaseFont);
原文链接:https://www.f2er.com/csharp/91362.html

猜你在找的C#相关文章