Aspose.Cells 把excel转成图片越南文字出现错误

window环境下成功把excel转成了图片,但是越南文有些显示是错误的,字体是已经下载到windows\fonts文件夹下了,excel里面的字体也是正常显示,但是转图片文字就不对了

@yuuro,

能否请您压缩并附上您的模板 Excel 文件,我们将尽快检查您的问题。

@yuuro,
如果是字体显示问题,你也可以尝试设置字体目录。请查看以下文档:

这是模板excel和图片还有相关字体
file.zip (1.6 MB)

@yuuro,
@yuuro,
After installing the font, we can obtain the correct results by running the following code. Please check the attachment.result.png (111.9 KB)

Workbook wb = new Workbook(filePath + "template.xlsx");
ImageOrPrintOptions options = new ImageOrPrintOptions();
options.CheckWorkbookDefaultFont = true;
options.DefaultFont = "Khmer OS Content";
options.IsCellAutoFit = true;
options.OnePagePerSheet = true;
options.ImageType = ImageType.Jpeg;
Worksheet sheet = wb.Worksheets[0];
SheetRender sr = new SheetRender(sheet, options);
sr.ToImage(0, filePath + "out.jpg");

你有设置一些sheet的样式吗,为什么我转图片就不对了

@yuuro,
我没有做任何其他设置,仅仅运行了帖子里我发的样例代码。