2012-09-08 139 views
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錯誤即將

幫助,將不勝感激。 謝謝!

+0

任何錯誤或更多的東西要添加? –

+1

[jQuery網絡攝像頭插件與asp.net mvc 3]的可能重複(http://stackoverflow.com/questions/9447992/jquery-webcam-plugin-with-asp-net-mvc-3) – Rafay

回答

0

您的項目正在引用一個名爲WebImage的類,但是您沒有導入該類的名稱空間,或者缺少程序集引用。