10

我正在尝试从相机比特流创建图像或位图,我将(希望)通过 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?

        }
    }
}
4

3 回答 3

31

您必须在项目中添加对 system.Drawing.Dll 的引用。

右键单击项目,添加引用并找到 System.Drawing.DLL 并添加引用。

编辑:您将在 Assemblies->Framework->System.Drawing 下找到它

于 2012-12-09T04:16:01.907 回答
4

将 System.Drawing.dll 作为参考程序集添加到您的项目中。

于 2012-12-09T04:13:22.223 回答
-1

包括 System.Drawing.dll 到参考 1) 你可以从http://www.dllme.com/dll/download/7139/System.Drawing.dll下载它

于 2014-02-11T09:21:16.330 回答