Font Changes to Some Default Font When Creating an Image of a Chart

Hi, We are also facing similar issue when we create an image of a chart the font on the chart changes to some default font. Is it same bug that is mentioned above? Also we are using aspose-slides-25.1 version . Is this bug in a particular version or is it a bug which still needs to be addressed? Is there a workaround for this?
I have added cart before and after taking image. The Font in ChartImage is different that in original chart.

OriginalFont_InChart_Before_Image.png (27.4 KB)

ChartImage_With_Font_Changed.png (33.0 KB)

h

@msonpal,
Thank you for describing the issue.

When converting a chart from a PowerPoint presentation to an image, a font that is not installed on the operating system may be replaced with a different font. You should install the font on the OS or use the FontsLoader class to load it as an external one. The following C# code example shows how to do this:

FontsLoader.LoadExternalFonts(new string[] { "path_to_the_font_folder" });
// ...
// Convert the chart to an image here.

Custom PowerPoint Font in C#|Aspose.Slides Documentation

Thanks the font loader approach worked.

@msonpal,
Thank you for using Aspose.Slides.