We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9c1b89 commit 8835a7fCopy full SHA for 8835a7f
Rotating_An_Image.py
@@ -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