python opencv显示中文

2022/3/29 9:27:09

本文主要是介绍python opencv显示中文,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

#!/usr/bin/env python
# -*- coding: utf-8 -*-

# -*- coding: utf-8 -*-
import cv2
import numpy as np
from PIL import Image, ImageDraw, ImageFont

def cv2ImgAddText(img, text, left, top, textColor=(0, 255, 0), textSize=20):
    if (isinstance(img, np.ndarray)):  #判断是否OpenCV图片类型
        img = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB))
    draw = ImageDraw.Draw(img)
    fontText = ImageFont.truetype(
        "font/simsun.ttc", textSize, encoding="utf-8")
    draw.text((left, top), text, textColor, font=fontText)
    return cv2.cvtColor(np.asarray(img), cv2.COLOR_RGB2BGR)

if __name__ == '__main__':
    imgPath = "laoshu.png"
    img = cv2.imread(imgPath)
    
    #图像 字体 左上 x y 颜色 大小
    saveImg = cv2ImgAddText(img, '我是小可爱仓鼠!', 50, 100, (255, 0, 0), 50)
    
    cv2.imshow('display',saveImg)
    cv2.imwrite('save.jpg',saveImg)
    cv2.waitKey()

  



这篇关于python opencv显示中文的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程