当前位置:Gxlcms > Python > python简单实现旋转图片的方法

python简单实现旋转图片的方法

时间:2021-07-01 10:21:17 帮助过:98人阅读

本文实例讲述了python简单实现旋转图片的方法。分享给大家供大家参考。具体实现方法如下:

  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")

希望本文所述对大家的Python程序设计有所帮助。

人气教程排行