我正在使用此链接中演示的Jquery网络摄像头插件:http://www.xarg.org/project/jquery-webcam-plugin/ 即时尝试将其与Asp.net集成,到目前为止相机正在显示并且已达到捕获方法,但是我在保存捕获的图像方面存在问题, 典型的情况是,当on capture()被触发时,webcam.save(“page”)将向该“页面”发送HTTP_RAW_DATA请求,然后一些代码保存捕获的图像,遗憾的是,这不会发生:/ 这是包含网络摄像头代码的aspx内容页面:
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery("#webcam").webcam({
width: 320,
height: 240,
mode: "save",
swffile: "Scripts/jscam_canvas_only.swf",
onTick: function () { },
onSave: function () {
},
onCapture: function () {
webcam.save("WebForm1.aspx");
},
debug: function () { },
onLoad: function () {
}
});
});
</script>
<p style="width:360px;text-align:center;font-size:12px">
<a href="javascript:webcam.capture();void(0);">Take a picture instantly</a>
</p>
WebForm1.aspx
是我为处理请求而添加的内容页面,我只添加了一些据说可以在此链接中使用的代码:
Save Image From Webrequest in C#并添加了
它背后的代码:
public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string strFile = DateTime.Now.ToString("dd_MMM_yymmss") + ".jpg";
FileStream log = new FileStream(Server.MapPath(strFile),
FileMode.OpenOrCreate);
byte[] buffer = new byte[1024];
int c;
while ((c = Request.InputStream.Read(buffer, 0, buffer.Length)) > 0)
{
log.Write(buffer, 0, c);
}
//Write jpg filename to be picked up by regex and displayed on flash html page.
Response.Write(strFile);
log.Close();
}
}
我认为问题可能是WebForm1.aspx中未达到请求。 希望你们能帮助我解决这个问题......