jquery网络摄像头插件不会发布捕获的图像

时间:2013-12-07 23:58:21

标签: asp.net-mvc-4 jquery-webcam-plugin

我在MVC4页面中使用jquery网络摄像头插件。该插件位于:http://www.xarg.org/project/jquery-webcam-plugin/

我在捕获图像后在插件上使用save方法,但它没有发布到控制器动作。

这是cshtml页面:

@{
    ViewBag.Title = "Index";
}

<!DOCTYPE html>
<html lang="es">
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>@ViewBag.Title - Prueba WebCam</title>
    <link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
    <meta name="viewport" content="width=device-width" />
    @Styles.Render("~/styles/base")
    @Scripts.Render("~/scripts/jquery", "~/scripts/jqueryui", "~/scripts/webcam")

    <script type="text/javascript">
        $(function () {
            $("#camera").webcam({
                width: 320,
                height: 240,
                mode: "save",
                swffile: "@Url.Content("~/Scripts/WebCam/jscam_canvas_only.swf")",
                onTick: function () { },
                onSave: function () { alert('Almacenamiento realizado') },
                onCapture: function () { webcam.save("@Url.Action("Save")"); alert('Captura realizada'); },
                debug: function () { },
                onLoad: function () { }
            });
        });

        function CaptureAndSave() {
            webcam.capture();
        }
    </script>
</head>
<body class="home desytec">
    <header>
    </header>
    <!-- MAIN -->
    <div id="main">
        <!-- wrapper-main -->
        <div class="wrapper">
            <!-- headline -->
            <div class="clear"></div>
            <div id="headline">
                <span class="main"></span>
                <span class="sub"></span>
            </div>
            <!-- ENDS headline -->

            <!-- content -->
            <div id="content">
                <div id="camera"></div>
                <br /><br /><br />
                <input type="button" onclick="CaptureAndSave();" value="Capturar" />
            </div>
            <!-- ENDS content -->
        </div>
        <!-- ENDS wrapper-main -->
    </div>
    <!-- ENDS MAIN -->
    <footer>
    </footer>
</body>
</html>

这是控制器:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace Capture.Controllers
{
    public class CaptureController : Controller
    {
        //
        // GET: /Capture/

        public ActionResult Index()
        {
            return View();
        }

        [HttpPost]
        public JsonResult Save(HttpPostedFileBase file)
        {
            try
            {
                if (file != null)
                {
                    string pic = System.IO.Path.GetFileName(file.FileName);
                    string path = System.IO.Path.Combine(Server.MapPath("~/Captures"), pic);
                    file.SaveAs(path);
                    return Json(true, JsonRequestBehavior.AllowGet);
                }
            }
            catch
            {

            }
            return Json(true, JsonRequestBehavior.AllowGet);
        }
    }
}

控制器的保存方法永远不会被调用,实际上,通过使用firebug,不会进行POST。

顺便说一下。相机可以正常工作,因为我可以在画布上看到它(DIV id =相机)。

按下捕获按钮后调用OnCapture回调。

对此有任何帮助吗?

由于 海梅

1 个答案:

答案 0 :(得分:1)

由于Save仅包含jscam_canvas_only.swf模式,因此未调用"callback"操作。对于完整的API(适用于"save"模式),您需要下载并使用jscam.swf

因此,请将webcam设置更改为:

$("#camera").webcam({
    //...
    swffile: "@Url.Content("~/Scripts/WebCam/jscam.swf")",
    //...
});

现在将调用您的Save操作,但file参数将始终为null,因为jscam.swf将图像数据作为十六进制字符串发送到请求正文中。

默认的模型绑定基础结构不处理此问题,因此您需要编写一些其他代码:

if (Request.InputStream.Length > 0)
{
    string pic = System.IO.Path.GetFileName("capture.jpg");
    string path = System.IO.Path.Combine(Server.MapPath("~/Captures"), pic);
    using (var reader = new StreamReader(Request.InputStream))
    {
        System.IO.File.WriteAllBytes(path, StringToByteArray(reader.ReadToEnd()));
    }
    return Json(true, JsonRequestBehavior.AllowGet);
}

您需要删除file参数并访问Request.InputStream中的原始数据,但因为它是十六进制字符串,您需要在保存之前将其转换为byte[]

.NET中没有内置默认转换,但SO充满了很好的解决方案:

How do you convert Byte Array to Hexadecimal String, and vice versa?

在我的示例中,我使用了this method

public static byte[] StringToByteArray(String hex)
{
  int NumberChars = hex.Length/2;
  byte[] bytes = new byte[NumberChars];
  using (var sr = new StringReader(hex))
  {
    for (int i = 0; i < NumberChars; i++)
      bytes[i] = 
        Convert.ToByte(new string(new char[2]{(char)sr.Read(), (char)sr.Read()}), 16);
  }
  return bytes;
}