Aspose.PDF for .NET html 转 pdf 乱码

QQ图片20191211114329.png (58.3 KB)
代码如下:
// Instantiate Document object
Document doc = new Document();
// Add a page to pages collection of PDF file
Page page = doc.Pages.Add();
// Instantiate HtmlFragment with HTML contnets
HtmlFragment title = new HtmlFragment(“不要用js中的跳转功能,因为跳转之后,在app上点击返回,会又回到移动审批的页面,移动审批的页面层级比较深,有的页面回退会导致报错”);
//Font-family from ‘Verdana’ will be reset to ‘Arial’
title.TextState = new TextState(“Arial”);
title.TextState.FontSize = 20;
// Set bottom margin information
title.Margin.Bottom = 10;
// Set top margin information
title.Margin.Top = 400;
// Add HTML Fragment to paragraphs collection of page
page.Paragraphs.Add(title);
// Save PDF file
PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
// Specify Default Font Name
pdfSaveOptions.DefaultFontName = “Arial”;

        doc.Save("faf1.pdf", pdfSaveOptions);

@chentl

感谢您与支持人员联系。

我们认为某些字符未显示,因为Arial字体不支持这些字符。 请使用适当的字体,然后与我们分享您的反馈。

1、我更改为 宋体–SimSun 也是同样的现象,
你那边有成功的案例或者类似情况吗?
2、我感觉转的还比较慢,是什么原因。

我下载的是最新版本的19.12,18.5的老版本也用了,同样的效果

Microsoft YaHei UI 这个字体我也试了,依然不行

@chentl

请您将提到的字体文件共享为ZIP,以便我们进行复制并相应地为您提供帮助。