在前文中,介绍了保存图片时指定dpi的方法,在一些需要指定dpi的情况下,同时需要输出透明背景,本文介绍该方法。
依赖
from matplotlib import pyplot as plt
设定透明背景
file_name = 'default.png'
plt.savefig(file_name, transparent=True)
通过设定transparent=True
即可。
Toccata in Nowhere.
在前文中,介绍了保存图片时指定dpi的方法,在一些需要指定dpi的情况下,同时需要输出透明背景,本文介绍该方法。
from matplotlib import pyplot as plt
file_name = 'default.png'
plt.savefig(file_name, transparent=True)
通过设定transparent=True
即可。