TuesPechkin 在货币 £ 符号前添加 Â
TuesPechkin adding  in front of Currency £ Symbol
我一直在使用 Tues Pechkin html 到 PDF 的转换
但是有一个问题
Tues Pechkin 默认添加这个符号在 £ Symbol
前面
示例:- £85,000
var document = new HtmlToPdfDocument
{
GlobalSettings =
{
ProduceOutline = true,
DocumentTitle = "TEST",
PaperSize = PaperKind.A4, // Implicit conversion to PechkinPaperSize
Margins =
{
All = 1.375,
Unit = Unit.Centimeters
}
}}
请帮忙
谢谢
添加了新的 Web 设置
new ObjectSettings { HtmlText = strContent,
WebSettings = new WebSettings
{
DefaultEncoding = "UTF-8",
LoadImages = true,
PrintBackground = true
}
}
使其可以接受UTF-8字符,并解决。谢谢
我一直在使用 Tues Pechkin html 到 PDF 的转换 但是有一个问题 Tues Pechkin 默认添加这个符号在 £ Symbol
前面示例:- £85,000
var document = new HtmlToPdfDocument
{
GlobalSettings =
{
ProduceOutline = true,
DocumentTitle = "TEST",
PaperSize = PaperKind.A4, // Implicit conversion to PechkinPaperSize
Margins =
{
All = 1.375,
Unit = Unit.Centimeters
}
}}
请帮忙 谢谢
添加了新的 Web 设置
new ObjectSettings { HtmlText = strContent,
WebSettings = new WebSettings
{
DefaultEncoding = "UTF-8",
LoadImages = true,
PrintBackground = true
}
}
使其可以接受UTF-8字符,并解决。谢谢