We purchase your Aspose.Slides for .NET back on 10/18/2012. It was meetings our needs, that is until we launched to Beta.
Included in the Example.zip is an illustration of the problem we have encountered. Attached is simple two slide PowerPoint 2007 pptx file. Our goal is to extract the slides as PNG images at the dimensions of 613 x 460.
//.. code elided
var image = slide.GetThumbnail(new Size(613, 460));
image.Save(imageFileName, ImageFormat.Png);
The above code snippet is how we are calling the Aspose.Slides API. We have verified we are on the latest version 7.4.0.0. The output image is of the right size however the content is skewed (see results folder). When we use a different tool such as PPTools ImageExport the images are as we expect (see expected folder).
Are we using the API incorrectly? Or is this is a known issue?
Please advise.