欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Matplotlib对图片的操作(1)——在图片上添加文字(包括字体颜色大小)

程序员文章站 2022-03-18 23:38:59
...
from matplotlib import pyplot as plt

font={	'color': 'red',
		'size': 20,
		'family': 'Times New Roman',
    	 # 'style':'italic',  # 斜体}

imgpath = "/home/1.jpg"
img = Image.open(imgpath)
plt.imshow(img)
plt.text(0.1, 0.1, "write anything", fontdict=font)
plt.savefig("savepath", bbox_inched='tight', pad_inches=0, dpi=150)
plt.cla()	#清空图像,以防信息叠加

matplotlib中画图内容太多,用到哪记录到哪吧