欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[教程] [Matplotlib] 生成背景透明的图片

程序员文章站 2022-03-02 09:29:18
...

长话短说

测试环境

  • macOS Catalina 10.15.3
  • Python 3.7.3
  • Matplotlib 3.1.3

方案一

import matplotlib.pyplot as plt

fig, ax = plt.subplots()
fig.patch.set_alpha(0.)  # 或者其他值

方案二

import matplotlib.pyplot as plt

fig, ax = plt.subplots()

# 绘制图片
...

# 保存图片
fig.savefig('xovee.svg', transparent=True)