前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python旋转图片的代码

python旋转图片的代码

原创
作者头像
大师级码师
修改2021-11-03 13:05:22
2.9K0
修改2021-11-03 13:05:22
举报
文章被收录于专栏:大师级码师大师级码师
代码语言:javascript
复制
# rotate an image counter-clockwise using the PIL image library
free from:  http://www.pythonware.com/products/pil/index.htm
make sure to install PIL after your regular python package is installed
import Image
open an image file (.bmp,.jpg,.png,.gif)
change image filename to something you have in the working folder
im1 = Image.open("Donald.gif")
rotate 60 degrees counter-clockwise
im2 = im1.rotate(60)
brings up the modified image in a viewer, simply saves the image as
a bitmap to a temporary file and calls viewer associated with .bmp
make certain you have an image viewer associated with this file type
im2.show()
save the rotated image as d.gif to the working folder
you can save in several different image formats, try d.jpg or d.png
PIL is pretty powerful stuff and figures it out from the extension
im2.save("d.gif")</pre> 

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档