丢失分辨率插图Python

时间:2017-11-26 04:27:09

标签: python resolution imshow imread insets

我正试图通过使用:

将一个情节插入另一个情节
...
im = plt.imread(get_sample_data('Inset.eps', asfileobj=True),format='eps')
newax = f.add_axes([0.14, 0.30, 0.45, 0.40])
newax.imshow(im,interpolation='none')
newax.axis('off')
plt.savefig('FinalPlot.eps',format='eps',dpi=1000,bbox_inches='tight')

问题在于FinalPlot.eps中的所有内容都具有良好的分辨率,但是插入时,它的质量非常差。 你知道如何提高插图的质量吗?

Image example

0 个答案:

没有答案