时间:2021-05-22
本文实例讲述了python简单实现旋转图片的方法。分享给大家供大家参考。具体实现方法如下:
# rotate an image counter-clockwise using the PIL image library# free from: http:///products/pil/index.htm# make sure to install PIL after your regular python package is installedimport Image# open an image file (.bmp,.jpg,.png,.gif)# change image filename to something you have in the working folderim1 = Image.open("Donald.gif")# rotate 60 degrees counter-clockwiseim2 = 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 typeim2.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 extensionim2.save("d.gif")希望本文所述对大家的Python程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了Java实现图片旋转,供大家参考,具体内容如下方法一:普通方法实现图片旋转/***图像旋转*@paramsrc*@paramangel*@r
为了美化word,排版也讲究,在word中也有简单的图片处理工具,可以帮你实现三维旋转的图片。1、选中要三维旋转的图片。2、执行【图片工具】|【格式】|【图片样
在ppt中,如果插入的图片倒置,怎样把它调整过来呢?有两种方法。最简单的方法,利用图片工具栏,点击旋转按钮调整图片。第二种方法,利用图片格式,设置图片旋转的角度
本文实例讲述了js根据鼠标移动速度背景图片自动旋转的方法。分享给大家供大家参考。具体实现方法如下:复制代码代码如下:js实现图片快速旋转围绕的鼠标希望本文所述对
本文实例讲述了Python向Excel中插入图片的简单实现方法。分享给大家供大家参考,具体如下:使用Python向Excel文件中插入图片,这个功能之前学习xl