Hi. I am using Aspose.Slides (ver.22.7.0).
When I create a thumbnail of a slide with a graph with the code below, the contents of the graph are not displayed correctly as shown in the attachment.
var pres = new Presentation(pptPath);
var slide1 = pres.Slides[0];
var width = pres.SlideSize.Size.Width;
var height = pres.SlideSize.Size.Height;using (var image = slide1.GetThumbnail(new Size((int)width, (int)height)).Clone() as System.Drawing.Image)
{
image.Save(thumPath, System.Drawing.Imaging.ImageFormat.Png);
}
Is there a solution to this?
Best regard.
ppt.zip (90.2 KB)