I found that Presentation.GetThumbails
reproducible fails for certain files in .NET Core application. This only occurs when running the application on Linux (Aspose.Slides 21.5.0, Ubuntu 21.04, libgdiplus 6.0.4+dfsg-2). On Windows the command works fine.
I created a sample file showing the issue with the following steps
- Create presentation with empty slide
- Insert a line
- Change line style to dashed
- Use Arrange > Rotate > Flip Horizontal
- Save file
Here’s a file created with the steps above: test.zip (23.8 KB)
Sample code
using (var p = new Aspose.Slides.Presentation("test.pptx"))
{
p.GetThumbnails(new Aspose.Slides.Export.RenderingOptions());
}