Allen-rg

图片不清晰,需要指定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

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2023-03-12
  • 2021-08-17
  • 2022-01-02
  • 2022-12-23
  • 2021-07-15
  • 2021-06-12
猜你喜欢
  • 2022-02-10
  • 2021-08-25
  • 2021-06-27
  • 2021-10-10
  • 2021-04-10
  • 2021-09-07
  • 2022-12-23
相关资源
相似解决方案