Hi Aspose Support Team,
We updated to Aspose Slides 2.8.0 because of various thumbnail problems, which have been solved now. Thx for that fast fixing. However, now we cannot set fill color on shapes anymore. With 2.7.0 this worked. Because of the thumbnail problems in 2.7.0 we can not go back to version 2.7.0.
Following snippet ( actually copied from your developers guide ) shows the problem:
//Instantiate PrseetationEx class that represents the PPTX
PresentationEx pres = new PresentationEx();
//Get the first slide
SlideEx sld = pres.getSlides().get(0);
//Add autoshape of rectangle type
int idx = sld.getShapes().addAutoShape(ShapeTypeEx.RECTANGLE, 50, 150, 75, 150);
ShapeEx shp = sld.getShapes().get(idx);
//Set the fill type to Solid
shp.getFillFormat().setFillType(FillTypeEx.SOLID);
//Set the color of the rectangle
shp.getFillFormat().getSolidFillColor().setColor(Color.YELLOW);
The shape is still coloured in standard blue.
I hope this can be fixed soon, as this is a real project blocker for us.
Regards
Marco