python savefig保存高分辨率图像

您所在的位置:网站首页 python导出图片Pdf不好修改 python savefig保存高分辨率图像

python savefig保存高分辨率图像

2023-07-01 14:57| 来源: 网络整理| 查看: 265

图片不清晰,需要指定dpi,

图片保存大小问题,设置bbox_inches=‘tight’

(bbox_inches:可选bbox英寸。只保存图形的给定部分。如果“紧”,试着找出数字的紧框。如果没有,请使用savefig.bbox)

plt.savefig("data/temp.png",dpi=500,bbox_inches = ‘tight‘)#解决图片不清晰,不完整的问题

https://blog.csdn.net/qq_31648921/article/details/88560191

plt.colse()

保存图像时去除图像边缘的空白区域

plt.axis(‘off‘)

plt.gcf().set_size_inches(512 / 100, 512 / 100)

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

plt.gca().yaxis.set_major_locator(plt.NullLocator())

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

plt.margins(0, 0)

plt.savefig(‘image.png‘)

很多资料中都只是单纯的用了subplots_adjusts()或者margins(),需要将两个函数都用上才能完全地去除空白边框。

https://blog.csdn.net/qq_24185239/article/details/90679614



【本文地址】


今日新闻


推荐新闻


    CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3