rotation property
ShapeBase.rotation property
Defines the angle (in degrees) that a shape is rotated. Positive value corresponds to clockwise rotation angle.
@property
def rotation(self) -> float:
...
@rotation.setter
def rotation(self, value: float):
...
Remarks
The default value is 0.
Examples
Shows how to insert and rotate an image.
doc = aw.Document()
builder = aw.DocumentBuilder(doc=doc)
# Insert a shape with an image.
shape = builder.insert_image(file_name=IMAGE_DIR + 'Logo.jpg')
self.assertTrue(shape.can_have_image)
self.assertTrue(shape.has_image)
# Rotate the image 45 degrees clockwise.
shape.rotation = 45
doc.save(file_name=ARTIFACTS_DIR + 'Shape.Rotate.docx')
See Also
- module aspose.words.drawing
- class ShapeBase