cv2.putText()绘制中文乱码

	    # 导入字体文件
        fontpath = "simsun.ttc"
        # 设置字体的颜色
        b, g, r, a = 0, 255, 0, 0
        # 设置字体大小
        font = ImageFont.truetype(fontpath, 35)
        # 将numpy array的图片格式转为PIL的图片格式
        img_pil = Image.fromarray(img)
        # 创建画板
        draw = ImageDraw.Draw(img_pil)
        # 在图片上绘制中文
        draw.text((x1,y1), ”你是舔狗吗", font=font, fill=(b, g, r, a))
        img = np.array(img_pil)

你可能感兴趣的:(python,开发语言,后端)