python读取文件中的所有图片
时间: 2024-04-30 21:18:06 浏览: 61
Python 读取指定文件夹下的所有图像方法
你可以使用Pillow库(也称为PIL)来读取文件中的所有图片。具体步骤如下:
1. 导入Pillow库
```python
from PIL import Image
```
2. 使用`os`模块遍历文件夹中的所有图片文件
```python
import os
image_folder = "path/to/folder/containing/images"
images = []
for filename in os.listdir(image_folder):
if filename.endswith(".jpg") or filename.endswith(".png"):
images.append(os.path.join(image_folder, filename))
```
3. 使用`Image.open()`函数打开图片
```python
for image_file in images:
with Image.open(image_file) as img:
# 处理图片
```
完成以上步骤后,你就可以在`with`块中使用`img`变量来处理图片了。例如,你可以使用`img.show()`函数来显示图片。
阅读全文