我想将图形绘制为精确的分辨率(例如800x600),但是当使用bbox_inches ='tight'时,这些图并不是全分辨率的,而是较小的。
我可以将以英寸为单位的图像大小手动设置为大约(9.2,6.5),这将导致799 x 601,但我希望有更好的解决方案。可以在调整大小之前设置bbox_inches ='tight'吗?
import matplotlib as mlp
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = fig.add_subplot(111)
x = y = np.arange(0, 1, 0.1)
plt.plot(x, y, label='my function')
plt.title('title')
ax.set_xlabel('xAxis')
ax.set_ylabel('yAxis')
#print fig.get_size_inches()
#fig.set_size_inches(9.2, 6.5)
plt.savefig('exact_size_test.png', bbox_inches='tight', dpi=100)
http://img707.imageshack.us/img707/2192/exactsizetest.png
最佳答案
您要在调用tight_layout
之前使用savefig
(doc)
import matplotlib as mlp
import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = fig.add_subplot(111)
x = y = np.arange(0, 1, 0.1)
plt.plot(x, y, label='my function')
plt.title('title')
ax.set_xlabel('xAxis')
ax.set_ylabel('yAxis')
#print fig.get_size_inches()
fig.set_size_inches(8, 6, forward=True)
fig.tight_layout()
plt.savefig('exact_size_test.png', dpi=100)
关于python - 在matplotlib中使用bbox_inches ='tight'时,如何获得带有像素尺寸的图像?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15141944/