python实现旋转和⽔平翻转的⽅法
如下所⽰:
# coding=utf-8
import glob
import os
from PIL import Image
x86汇编手册def rotate_270(imgae):
"""
将图⽚旋转270度
"""
# 读取图像
im = Image.open(imgae)
# im.show()
# 指定逆时针旋转的⾓度
im_rotate = im.rotate(270)
# im_rotate.show()
return im_rotate
def flip_horizontal(image):
"""
将图⽚⽔平翻转
"""
im = Image.open(image)
键盘按键位置图
# im.show()
im_fh = im.transpose(Image.FLIP_LEFT_RIGHT)京东python入门教程
# im_fh.show()
return im_fh网站制作公司十强
def createFile(path):
isExists = ists(path)
# 判断结果
if not isExists:
# 如果不存在则创建⽬录
# 创建⽬录操作函数
os.makedirs(path)
return True
else:
# 如果⽬录存在则不创建,并提⽰⽬录已存在
print('%s ⽬录已存在' % path)
return False
def main():
path = 'D:/VideoPhotos/hongshi/'
createFile('D:/VideoPhotos/hongshi_rotate')
createFile('D:/VideoPhotos/hongshi_flip_horizontal')
dirs = os.listdir(path)
for dir in dirs:
parameter illegal
# print(dir)
createFile('D:/VideoPhotos/hongshi_rotate/' + dir)
createFile('D:/VideoPhotos/hongshi_flip_horizontal/' + dir)教师下载课件最好网站
images = glob.glob(path + dir + r"\*.jpg")
for image in images:
image_name = image[image.find("\\"):]
print(image_name)
rotate_270(image).save('D:/VideoPhotos/hongshi_rotate/' + dir +
image_name)
flip_horizontal(image).save(
'D:/VideoPhotos/hongshi_flip_horizontal/' + dir + image_name)
if __name__ == '__main__':
main()
以上这篇python实现旋转和⽔平翻转的⽅法就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀
持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论