下标字符转化问题.docx (22.1 KB)
你好,我们在评估aspose word 转 pdf的过程中,一些特殊字符以及下标的字符转换后格式有错误。请参考截图。以及我们的输入文档
@zou_yw 在转换文档时,请使用以下代码检查遗漏的字体:
Document doc = new Document("Input.docx");
HandleDocumentWarnings callback = new HandleDocumentWarnings();
doc.WarningCallback = callback;
doc.Save("Output.pdf");
public class HandleDocumentWarnings : IWarningCallback
{
public void Warning(WarningInfo info)
{
if (info.WarningType == WarningType.FontSubstitution)
{
Console.WriteLine("Font substitution: " + info.Description);
FontWarnings.Warning(info);
}
}
public WarningInfoCollection FontWarnings = new WarningInfoCollection();
}
以下是我安装字体后的输出结果:
DocxToPdf.png (69.0 KB)