When I run the following code:
fig, ax = plt.subplots()
ax.quiver(np.zeros(5), np.arange(5), np.ones(5), np.ones(5))
plt.savefig('test', bbox_inches = 'tight')
Things save fine.
But when I turn clipping off on the quiver plot...
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')
I get the following error: ValueError: Image size of 684x260469 pixels is too large. It must be less than 2^16 in each direction.
What's going on here?