from PIL import Image
import os
import os.path
rootdir = r'C:\Users\wy\Desktop\kd' #读取文件夹位置
for parent, dirnames, filenames in os.walk(rootdir):
for filename in filenames:
print('parentis :' + parent)
print('filenameis :' + filename)
currentPath = os.path.join(parent, filename)
print('thefulll name of the file is :' + currentPath)
im = Image.open(currentPath)
out = im.transpose(Image.FLIP_LEFT_RIGHT) #水平翻转
# out = im.transpose(Image.FLIP_TOP_BOTTOM) #垂直翻转
# out = im.rotate(45) #45°顺时针翻转
newname = r"C:\Users\wy\Desktop\kd_1" + '\\' + filename + "(1).jpg"
out.save(newname)
python怎么将图片镜像翻转 python 图片翻转
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Python PDF转换为图片
PDF 另存为图片,pdf python操作,python 转换PDF, Python PDF图片
Python 转换 图片 pdf -
利用卡片翻转特效实现时钟效果
利用动画事件监听和requestanimationframe实现时钟的翻牌特效
requestanimatioframe 动画事件监听 时钟 翻牌 重绘