pythonで回転と水平反転を実現する方法


以下の通りです

# coding=utf-8
import glob
import os

from PIL import Image


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)
# im_fh.show()
return im_fh


def createFile(path):
isExists = os.path.exists(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:
# 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は回転と水平回転の方法を実現しました。小編集は皆さんに全部の内容を共有しました。参考にしていただければと思います。よろしくお願いします。