Default Excel font Aptos not printed

Dear Aspose,
reporting an issue with improper Font display (Aptos).

Sending you application which processes sample excel workbook extracting svg as result
(Default Aptose font is used in excel sheet but rendered svg do not contain Aptos font mentioned):

See the image with difference in Fonts highlighted
Bug-831624-SvgVsExcel.png (39.7 KB)

Attaching application used (Windows 11 with Aspose.Cells 24.3):
BUG-831624-FontAptosNotUsed.zip (88.7 KB)

Thanks for attention.

Best Regards
Pavel Otta

@ottap,

Thanks for the template XLSX file, screenshot and SVG file.

I was able to reproduce the issue as you mentioned by using your template XLSX file. I found default Excel font “Aptos” was not printed in Excel to SVG rendering.

Workbook workbook = new("g:\\test2\\Aptos Font.xlsx");
workbook.Save("g:\\test2\\out1.svg");

We require through evaluation of the issue. We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): CELLSNET-55376

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

@ottap ,

Because “Aptos Narrow” font is a cloud font(cloud_font.png), it is not intalled on the system, but be cached at “C:\Users\YOUR_USERNAME\AppData\Local\Microsoft\FontCache\4\CloudFonts” in Windows.

Please set this font folder at the start.
//Please replace “YOUR_USERNAME”

FontConfigs.SetFontFolder(@"C:\Users\YOUR_USERNAME\AppData\Local\Microsoft\FontCache", true);