有没有办法以编程方式将文本添加到 System.Drawing.Image?
我有一个 System.Drawing.Image,用 System.Drawing.Graphics DrawImage 函数显示。该图像是一辆警车,我想在警车顶部画一个单位编号。有没有简单的方法可以做到这一点?
I have a System.Drawing.Image that I display with System.Drawing.Graphics DrawImage function. The image is a police car, and I would like to draw a unit number on top of the police car. Is there an easy way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
DrawString
< /a> 将文本写入图像的方法。You can use the
DrawString
method to write text out onto an image.目前尚不清楚您是尝试将文本添加到图像中还是仅在图像上显示文本:
到图像:
或在图像上:
It's not clear if you are trying to add the text to the image or just display text on the image:
To the image:
or On the image: