用saves函数将axes6中显示的图像存为spt.jpg
时间: 2023-07-16 14:14:30 浏览: 204
Matlab的GUI中的axes中图像的保存方法
可以使用`savefig`函数将`axes6`中显示的图像保存为`spt.jpg`,代码如下:
```python
import matplotlib.pyplot as plt
# 假设你的figure对象名为fig,axes对象名为axes6
fig.savefig('spt.jpg', dpi=300, bbox_inches='tight')
```
其中,`dpi`参数指定图片分辨率,`bbox_inches`参数可选,如果设置为`'tight'`,将会尝试将图片的边缘空白区域裁剪掉。
阅读全文