Python代码实现批量输出图片
时间: 2023-02-02 19:40:46 浏览: 470
python实现图片批量处理器.
下面是批量输出图片的Python代码实现:
```
import os
from PIL import Image
# 图片文件夹的路径
folder_path = 'path/to/image/folder'
# 遍历文件夹中的图片文件
for filename in os.listdir(folder_path):
# 跳过非图片文件
if not filename.endswith('.jpg'):
continue
# 打开图片文件
image = Image.open(os.path.join(folder_path, filename))
# 输出图片
image.show()
```
这段代码将遍历指定路径下的所有图片文件(仅限`.jpg`格式),并使用Python图像库(PIL)中的`Image.show()`方法输出图片。
阅读全文