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.
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.