我正在使用此链接中演示的 Jquery 网络摄像头插件:http : //www.xarg.org/project/jquery-webcam-plugin/ 我正在尝试将其与 Asp.net 集成,到目前为止,相机正在显示并达到 oncapture 方法,但是我在保存捕获的图像时遇到问题,典型的情况是当 on capture() 被触发时,webcam.save(“page”) 会向那个“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
是我为处理请求而添加的内容页面,我只添加了一些据说可以在此链接中使用的代码:
它到后面的代码:
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 中没有达到请求..希望你们能帮我解决这个问题...