Advertisement
here2share

# image_rotate_45deg.py

Aug 19th, 2015
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. # image_rotate_45deg.py
  2.  
  3. from PIL import Image
  4. im = Image.open("example.png")
  5. im.rotate(45).show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement