python中plt改变图像尺寸
时间: 2023-12-12 11:14:22 浏览: 102
用python 批量更改图像尺寸到统一大小的方法
在Python中,可以使用matplotlib库中的pyplot模块(简称plt)来改变图像的尺寸。具体的步骤如下:
1. 导入matplotlib库和pyplot模块:
```python
import matplotlib.pyplot as plt
```
2. 读取图片并显示:
```python
img = plt.imread('image.png')
plt.imshow(img)
```
3. 修改图片尺寸:
```python
plt.figure(figsize=(width, height))
plt.imshow(img)
```
其中,width和height分别表示要修改的图片宽度和高度的像素值。
完整的代码如下:
```python
import matplotlib.pyplot as plt
# 读取图片并显示
img = plt.imread('image.png')
plt.imshow(img)
# 修改图片尺寸
plt.figure(figsize=(width, height))
plt.imshow(img)
```
需要注意的是,修改图片尺寸可能会导致图片失真,因此需要根据实际情况进行调整。
阅读全文