[Python] python旋转图片的代码 →→→→→进入此内容的聊天室

来自 , 2020-02-02, 写在 Python, 查看 153 次.
URL http://www.code666.cn/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

回复 "python旋转图片的代码"

这儿你可以回复上面这条便签

captcha