gpt4 book ai didi

utf-8 - iTextSharp 和特殊字符(斯洛伐克字素)

转载 作者:行者123 更新时间:2023-12-02 20:12:01 25 4
gpt4 key购买 nike

我在使用某些特殊的斯洛伐克字符(例如 č、ň 和 ť)时遇到问题。它们在 itextsharp 生成的 pdf 中消失了。

据我所知,这个问题与我的 BaseFont 的编码有关。目前我正在使用这个:

BaseFont.CreateFont(BaseFont.HELVETICA, iTextSharp.text.pdf.BaseFont.CP1250, BaseFont.NOT_EMBEDDED)

有人建议这应该有效:

BaseFont.CreateFont(BaseFont.HELVETICA, iTextSharp.text.pdf.BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED)

但是它抛出了这个异常错误:

System.ArgumentException was caught
Message='Identity-H' is not a supported encoding name.
Parameter name: name
ParamName=name
Source=mscorlib

有人知道可能的原因和解决方案吗?

最佳答案

问题出在这里:

BaseFont.CreateFont(BaseFont.HELVETICA ...

BaseFont.HELVETICAstandard type 1 font并且不能用于您的斯洛伐克字符。您需要使用具有正确字形的字体:

string FONT = "c:/windows/fonts/arialbd.ttf";
using (Document document = new Document()) {
PdfWriter.GetInstance(document, STREAM);
document.Open();
BaseFont bf = BaseFont.CreateFont(
FONT, BaseFont.IDENTITY_H, BaseFont.EMBEDDED
);
document.Add(new Paragraph("č, ň and ť", new Font(bf, 12)));
}

关于utf-8 - iTextSharp 和特殊字符(斯洛伐克字素),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11950338/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com