0

请帮助我在 asp.net 中的 mvc 3.0 中使用代码集成网络摄像头。这是我的C#代码体。

public ActionResult UploadWebCamPic(string ImageData)
{
    byte[] upImg = null;
    WebImage wi = new WebImage(Convert.FromBase64String(ImageData));
    upImg = wi.GetBytes("png");
    //Get a data Context and you now have the image in PNG format
    //in the upImg byte[] that you can store in your DB.
    return Json("OK");
}

这是我的JavaScript代码。
Javascript代码

未找到命名空间 webimage 错误即将到来

帮助将不胜感激。谢谢 !!

4

1 回答 1

0

您的项目正在引用一个名为的类,WebImage但您尚未导入该类的命名空间,或者您缺少程序集引用。

于 2012-09-08T21:24:50.760 回答