Python code for rotating pictures

From , 4 Years ago, written in Python, viewed 51 times.
URL https://pastebin.vip/view/a8ed7112
  1. # rotate an image counter-clockwise using the PIL image library
  2. # free from:  http://www.pythonware.com/products/pil/index.htm
  3. # make sure to install PIL after your regular python package is installed
  4. import Image
  5. # open an image file (.bmp,.jpg,.png,.gif)
  6. # change image filename to something you have in the working folder
  7. im1 = Image.open("Donald.gif")
  8. # rotate 60 degrees counter-clockwise
  9. im2 = im1.rotate(60)
  10. # brings up the modified image in a viewer, simply saves the image as
  11. # a bitmap to a temporary file and calls viewer associated with .bmp
  12. # make certain you have an image viewer associated with this file type
  13. im2.show()
  14. # save the rotated image as d.gif to the working folder
  15. # you can save in several different image formats, try d.jpg or d.png  
  16. # PIL is pretty powerful stuff and figures it out from the extension
  17. im2.save("d.gif")
  18. #//python/5729

Reply to "Python code for rotating pictures"

Here you can reply to the paste above

captcha

https://burned.cc - Burn After Reading Website