python图片旋转脚本_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()

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值