Csharp中opencv无法在图片上添加中文的解决办法

由于opencv的PutText函数无法在图片上输入中文,所以可以将Mat类先转换为Image,然后利用Graphics的DrawString添加中文,然后再将Image转换为Mat。其中,Image转换为Mat需要用OpenCvSharp.Extensions库的BitmapConverter实现。

using OpenCvSharp;
using OpenCvSharp.Extensions;

Mat PutText(Mat src, string text, int x, int y)
{
    Mat dst;
    System.Drawing.Image dstimg = new Bitmap(src.ToMemoryStream()) as System.Drawing.Image;
    using (var g = Graphics.FromImage(dstimg))
    {
        Brush textBrush = new SolidBrush(Color.Green);
        var font = new Font(FontFamily.GenericMonospace, 25, FontStyle.Bold);
        g.DrawString(text, font, textBrush, x, y);
        dst = BitmapConverter.ToMat((Bitmap)dstimg);
    }
    return dst;
}

调用示例:

src = PutText(src, tb.Text, tb.BoxPoints[0].X, tb.BoxPoints[0].Y);

在这里插入图片描述
图中绿色字为PutText写出来的效果。

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值