Matplotlib 保存图片背景透明
时间: 2023-12-04 10:58:51 浏览: 258
matlab开发-透明背景
在 Matplotlib 中,你可以使用 `savefig()` 函数将图形保存为 PNG 或其他支持透明背景的格式。要保存带有透明背景的图像,你需要在 `savefig()` 函数中设置 `transparent=True`。
以下是一些示例代码:
```python
import matplotlib.pyplot as plt
# 绘制图形
fig, ax = plt.subplots()
ax.plot([1, 2, 3], [4, 5, 6])
# 保存图像,背景透明
fig.savefig('my_plot.png', transparent=True)
```
你可以将 `savefig()` 函数的其他参数设置为满足你的需求,例如 DPI、图像大小等。
阅读全文