我正在尝试从相机比特流创建图像或位图,我将(希望)通过 websocket 传递给浏览器。我正在构建的应用程序是一个控制台应用程序,因为我认为这个应用程序不需要 GUI。现在我无法创建/访问 Image 和 Bitmap 类 - System.Drawing 似乎不存在,我不知道为什么。当我尝试时,using System.Drawing
我收到错误The type or namespace name 'Drawing' does not exist in the namespace 'System' (are you missing an assembly reference?)
在控制台应用程序中创建位图的最佳方法是什么,我似乎无法加载 System.Drawing 是否有原因?
代码:
private void Kinect_ColorFrameReady(object sender, ColorImageFrameReadyEventArgs e)
{
using (ColorImageFrame frame = e.OpenColorImageFrame())
{
if (frame != null)
{
byte[] pixelData = new byte[frame.PixelDataLength];
frame.CopyPixelDataTo(pixelData);
//how do we create a bitmap here and pass it off to chrome?
}
}
}