【发布时间】:2014-01-26 08:39:21
【问题描述】:
我需要将位图图像转换为图像格式图像,以便可以在我的图像框中显示它。请帮忙谢谢!
【问题讨论】:
我需要将位图图像转换为图像格式图像,以便可以在我的图像框中显示它。请帮忙谢谢!
【问题讨论】:
也可以从 .Net Bitmap 对象创建图像。 C# 中的代码是
Image<Bgr, Byte> img = new Image<Bgr, Byte>(bmp); //where bmp is a Bitmap
你可以找到官方文档here
【讨论】: