我正在尝试使用ITextSharp并将插入项目中的字体文件作为资源加载。
我尝试了不同的解决方案,但它们似乎都没有效果,这里是我所做的一个示例:
这个无法加载资源
private static BaseFont _bfArial;
public static BaseFont BfArial
{
get
{
if (_bfArial == null)
_bfArial = BaseFont.CreateFont(@"Resources\Images\arialuni.ttf", BaseFont.IDENTITY_H, BaseFont.EMBEDDED);
return _bfArial;
}
}
这个给了我一个错误:“'Identity-H'不是受支持的编码名称。”
private static BaseFont _bfCourier;
public static BaseFont BfCourier
{
get
{
if (_bfCourier == null)
_bfCourier = BaseFont.CreateFont("Courier", BaseFont.IDENTITY_H, BaseFont.EMBEDDED, true, FontsResources.cour, null);
return _bfCourier;
}
}
以及我在解决方案中添加文件的方式
你能帮我解决这个问题吗?谢谢
安德烈
答案 0 :(得分:3)
尝试使用:
Byte[] fb = Properties.Resources.arialuni;
_bfArial = BaseFont.CreateFont("arialuni.ttf", BaseFont.CP1252, BaseFont.EMBEDDED, BaseFont.CACHED, fb, null);
“属性”出现在解决方案资源管理器中的“GIGPrinting”下,“Properties.Resources”是对资源文件夹的引用。