0
請幫助我在帶有代碼的asp.net中的mvc 3.0中集成網絡攝像頭。 這是我的C#代碼體。在mvc3中集成網絡攝像頭
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 Code
找不到命名空間webimage錯誤即將
幫助,將不勝感激。 謝謝!
任何錯誤或更多的東西要添加? –
[jQuery網絡攝像頭插件與asp.net mvc 3]的可能重複(http://stackoverflow.com/questions/9447992/jquery-webcam-plugin-with-asp-net-mvc-3) – Rafay