Rotating PowerPoint Slide Shapes in Python

Aspose.Slides - Rotating Shapes

To Rotate Shapes using Aspose.Slides Java for Python. Here you can see example code.

Python Code


 # Create an instance of Presentation class

pres = self.Presentation

\# Get the first slide

sld = pres.getSlides().get_Item(0)

\# Add autoshape of rectangle type

shapeType = self.ShapeType

shp = sld.getShapes().addAutoShape(shapeType.Rectangle, 50, 150, 75, 150)

\# Rotate the shape to 90 degree

shp.setRotation(90)

\# Write the presentation as a PPTX file

save_format = self.SaveFormat()

pres.save(self.dataDir + "RectShpRot.pptx", save_format.Pptx)

print "Rotated shape, please check the output file."

Download Running Code

Download running code from any of the below mentioned social coding sites: