请帮助我在 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 错误即将到来
帮助将不胜感激。谢谢 !!