1

我正在尝试使用以下方法将一个情节插入另一个情节:

...
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 中的所有内容都具有良好的分辨率,但插图的质量非常差。你知道如何提高插图的质量吗?

图片示例

4

0 回答 0