当我运行以下代码时:
fig, ax = plt.subplots()
ax.quiver(np.zeros(5), np.arange(5), np.ones(5), np.ones(5))
plt.savefig('test', bbox_inches = 'tight')
东西保存得很好。
但是当我在箭袋情节上关闭剪辑时......
fig, ax = plt.subplots()
ax.quiver(np.zeros(5), np.arange(5), np.ones(5), np.ones(5), clip_on = False)
plt.savefig('test', bbox_inches = 'tight')
我收到以下错误:ValueError:684x260469 像素的图像尺寸太大。每个方向必须小于 2^16。
这里发生了什么?