美文网首页
Python去白边保存图像

Python去白边保存图像

作者: BinJiang | 来源:发表于2019-08-19 09:46 被阅读0次

import matplotlib.pyplot as plt

fig = plt.gcf()

plt.axis('off')

plt.gca().xaxis.set_major_locator(plt.NullLocator())

plt.gca().xaxis.set_major_locator(plt.NullLocator())

plt.subplots_adjust(top = 1, bottom = 0, right = 1, left = 0, hspace = 0, wspace = 0)

plt.margins(0,0)

fig.savefig('save_name.png')

注意: 如果不采用subplot_adjust + margins(0,0), 而是在fig.savefig()参数中添加bbox_inches = 'tight', 也可以达到

去除空白的效果,但是,这样会导致对图片输出大小设置失效。

相关文章

网友评论

      本文标题:Python去白边保存图像

      本文链接:https://www.haomeiwen.com/subject/mggjsctx.html