python怎么设置输出图片大小
时间: 2023-06-27 10:05:11 浏览: 87
python 设置输出图像的像素大小方法
你可以使用 Matplotlib 库来设置输出图片大小。
下面是一个例子:
```python
import matplotlib.pyplot as plt
fig = plt.figure(figsize=(8, 6)) # 设置图片大小为 8x6 英寸
ax = fig.add_subplot(111)
ax.plot([1, 2, 3, 4, 5], [2, 3, 5, 6, 8])
plt.show()
```
在 `fig = plt.figure(figsize=(8, 6))` 这一行,我们设置了图片大小为 8x6 英寸。你可以根据自己的需要修改这个大小。
阅读全文