如何使用 Matplotlib 在绘图角插入一张小图像?
若要使用 matplotlib 在绘图角插入一张小图像,我们可以执行以下步骤:-
- 使用 imread() 方法从文件中读取一张图片到数组中。
- 使用 subplots() 方法创建一个图形并添加一组子图。
- 在当前坐标轴上绘制一条线。
- 创建新坐标轴,用来显示图像数组(步骤 1)。
- 关闭用于图像插入而创建的新坐标轴。
- 使用 show() 方法显示图形。
示例
import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True im = plt.imread('bird.jpg') # insert local path of the image. fig, ax = plt.subplots() ax.plot(range(10)) newax = fig.add_axes([0.8,0.8,0.2,0.2], anchor='NE', zorder=1) newax.imshow(im) newax.axis('off') plt.show()
输出
广告