我试图绘制穿过的迷宫,当我确实使用plt.show()时,我得到了整个迷宫,而当我使用savefig保存相同的图像时,最后一行和被绘制的列被裁剪/切断。
这是用于绘制迷宫的代码。 (我附上了迷宫的屏幕截图。)
preg_match()
This is the screenshot of the image generated by savefig
This is the screenshot of the last part of maze shown by plt.show
答案 0 :(得分:0)
保存之前是否尝试过设置轴限制?
plt.xlim(tuple_x)
plt.ylim(tuple_y)
其中tuple_x:
(x0,xf) := interval of interest