Hi!
I detected that Aspose.Slides is returning an invalid size for some PPTXs.
I used:
- O.S: Ubuntu 20.04.2 LTS
- Java: openjdk 11.0.9.1
- Source PPT: CIJ_Corse_Layout_PPT_3.zip (1.1 MB)
- Sample code:
IPresentation ppt = new com.aspose.slides.Presentation(“/home/users/Downloads/CIJ_Corse_Layout_PPT_3…pptx”);
System.out.println(ppt.getSlideSize().getSize().getWidth());
System.out.println(ppt.getSlideSize().getSize().getHeight());
In this sample code, I expect that the width is 960 and the height is 540, but the values returned by Apose.Slides are 720 and 405, respectively