Skip to content

Commit 8835a7f

Browse files
authored
Create Rotating_An_Image.py
1 parent e9c1b89 commit 8835a7f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Rotating_An_Image.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Install The Module By "pip install pillow"
2+
from PIL import Image
3+
4+
# Open Image
5+
orginal = Image.open("Belgin_Android.png")
6+
7+
# Image rotate & show
8+
orginal.rotate(45).show()

0 commit comments

Comments
 (0)