JQuery 网络摄像头结果未在 Firefox 中显示
JQuery WebCam Result not showing in Firefox
我在 MVC4 页面中使用 jquery 网络摄像头插件。插件在这里:http://www.xarg.org/project/jquery-webcam-plugin/.
1.It 在 Chrome 中正常工作,“Live Camera”标签下显示的 IE.Image 显示实时摄像机 result.Which 未在 firefox 中显示。
- 下图是 Firefox.Live 相机结果不显示。拍摄的图像成功保存在我的图像文件夹中。
这是我的 .cshtml 页面代码
<div class="modal-dialog" style="width: 560px;">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true" tabindex="-1">
<img src="~/Content/images/btn_close.png" alt=""></button>
<h4 class="modal-title" id="myModalLabel">Capture Image</h4>
</div>
<div class="padLeftRight15">
<div id="lblSKLCreateErrorMessage" class="alert alert-danger" style="display: none"></div>
</div>
<div class="modal-body">
<form class="form-horizontal" role="form" id="Profile-CaptureImage-form">
<table border="0">
<tr>
<td align="center">
<u>Live Camera</u>
</td>
<td></td>
<td align="center">
<u>Captured Picture</u>
</td>
</tr>
<tr>
<td>
<div id="webcam">
</div>
</td>
<td>
</td>
<td>
<img id="imgCapture" style="visibility: hidden" width="250" height="200" />
</td>
</tr>
<tr>
<td>
<input type="button" id="btnCapture" value="Capture" onclick="Capture();" />
</td>
<td></td>
<td>
<input type="button" id="btnSave" value="Save Image" style="visibility: hidden" data-dismiss="modal" onclick="SaveImage();" />
</td>
</tr>
</table>
<br />
<br />
<span id="camStatus"></span>
</form>
</div>
</div>
$(document).ready(function () {
LoadImage();
});
function Capture() {
webcam.capture();
return false;
}
function LoadImage() {
jQuery("#webcam").webcam({
width: 250,
height: 240,
mode: "save",
swffile: "@Url.Content("~/Scripts/Webcam_Plugin/jscam.swf")",
debug: function (type, status) {
$('#camStatus').append(type + ": " + status + '<br /><br />');
},
onSave: function (data) {
$.ajax({
type: "POST",
url: "@(Url.Action("GetCapturedImage", "Registration", new { ProfileCode = Model.ProfileCode }))",
data: '',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (r) {
$('#btnSave').css("visibility", "visible");
$('#imgCapture').css("visibility", "visible");
$('#imgCapture').attr("src", r + "?ts=" + Date.now());
},
failure: function (response) {
alert(response.d);
}
});
},
onCapture: function () {
webcam.save("@(Url.Action("CaptureImage", "Registration", new { ProfileCode = Model.ProfileCode }))");
}
});
}
function SaveImage() {
$('#btnUploadProfilePhoto').val("");
$('#preview').attr("src", '@(RMSApp.Common.ProjectConfiguration.ProfileImagePath + Model.ProfileCode + ".png?ts=123")' + Date.now());
$('#hdnImagePath').val('@(Model.ProfileCode + ".png")');
$("#CaptureImageModel").html('');
}
这里是控制器的代码
public ActionResult CaptureImage(string ProfileCode)
{
Profile obj = new Profile();
obj.ProfileCode = ProfileCode;
if (Request.InputStream.Length > 0)
{
using (StreamReader reader = new StreamReader(Request.InputStream))
{
string hexString = Server.UrlEncode(reader.ReadToEnd());
string imageName = ProfileCode.Trim();
//string imageName = FirstName.Trim() + "_" + (string.IsNullOrEmpty(MiddleName) ? "" : MiddleName.Trim().Substring(0, 1) + "_") + (string.IsNullOrEmpty(LastName) ? "" : LastName.Trim());
string imagePath = string.Format("~/Documents/ProfileImages/{0}.png", imageName);
string directoryName = Server.MapPath("~/" + ProjectConfiguration.ProfileImageFolder);
if (!Directory.Exists(directoryName))
Directory.CreateDirectory(directoryName);
if (!string.IsNullOrEmpty(imagePath))
{
string existingImage = Path.Combine(directoryName, imagePath);
if (System.IO.File.Exists(existingImage))
System.IO.File.Delete(existingImage);
System.IO.File.WriteAllBytes(Server.MapPath(imagePath), ConvertHexToBytes(hexString));
}
}
}
return PartialView("CaptureImage",obj);
}
private static byte[] ConvertHexToBytes(string hex)
{
byte[] bytes = new byte[hex.Length / 2];
for (int i = 0; i < hex.Length; i += 2)
{
bytes[i / 2] = Convert.ToByte(hex.Substring(i, 2), 16);
}
return bytes;
}
public JsonResult GetCapturedImage(string ProfileCode)
{
string imagePath = string.Format(System.Configuration.ConfigurationManager.AppSettings["ProfileImages"] + ProfileCode +".png");
return Json(imagePath);
}
我找到解决方案了!
"淡入" class 模型在 firefox 浏览器中显示网络摄像头结果时出现问题。
我在 MVC4 页面中使用 jquery 网络摄像头插件。插件在这里:http://www.xarg.org/project/jquery-webcam-plugin/.
1.It 在 Chrome 中正常工作,“Live Camera”标签下显示的 IE.Image 显示实时摄像机 result.Which 未在 firefox 中显示。
- 下图是 Firefox.Live 相机结果不显示。拍摄的图像成功保存在我的图像文件夹中。
这是我的 .cshtml 页面代码
<div class="modal-dialog" style="width: 560px;">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true" tabindex="-1">
<img src="~/Content/images/btn_close.png" alt=""></button>
<h4 class="modal-title" id="myModalLabel">Capture Image</h4>
</div>
<div class="padLeftRight15">
<div id="lblSKLCreateErrorMessage" class="alert alert-danger" style="display: none"></div>
</div>
<div class="modal-body">
<form class="form-horizontal" role="form" id="Profile-CaptureImage-form">
<table border="0">
<tr>
<td align="center">
<u>Live Camera</u>
</td>
<td></td>
<td align="center">
<u>Captured Picture</u>
</td>
</tr>
<tr>
<td>
<div id="webcam">
</div>
</td>
<td>
</td>
<td>
<img id="imgCapture" style="visibility: hidden" width="250" height="200" />
</td>
</tr>
<tr>
<td>
<input type="button" id="btnCapture" value="Capture" onclick="Capture();" />
</td>
<td></td>
<td>
<input type="button" id="btnSave" value="Save Image" style="visibility: hidden" data-dismiss="modal" onclick="SaveImage();" />
</td>
</tr>
</table>
<br />
<br />
<span id="camStatus"></span>
</form>
</div>
</div>
$(document).ready(function () {
LoadImage();
});
function Capture() {
webcam.capture();
return false;
}
function LoadImage() {
jQuery("#webcam").webcam({
width: 250,
height: 240,
mode: "save",
swffile: "@Url.Content("~/Scripts/Webcam_Plugin/jscam.swf")",
debug: function (type, status) {
$('#camStatus').append(type + ": " + status + '<br /><br />');
},
onSave: function (data) {
$.ajax({
type: "POST",
url: "@(Url.Action("GetCapturedImage", "Registration", new { ProfileCode = Model.ProfileCode }))",
data: '',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (r) {
$('#btnSave').css("visibility", "visible");
$('#imgCapture').css("visibility", "visible");
$('#imgCapture').attr("src", r + "?ts=" + Date.now());
},
failure: function (response) {
alert(response.d);
}
});
},
onCapture: function () {
webcam.save("@(Url.Action("CaptureImage", "Registration", new { ProfileCode = Model.ProfileCode }))");
}
});
}
function SaveImage() {
$('#btnUploadProfilePhoto').val("");
$('#preview').attr("src", '@(RMSApp.Common.ProjectConfiguration.ProfileImagePath + Model.ProfileCode + ".png?ts=123")' + Date.now());
$('#hdnImagePath').val('@(Model.ProfileCode + ".png")');
$("#CaptureImageModel").html('');
}
这里是控制器的代码
public ActionResult CaptureImage(string ProfileCode)
{
Profile obj = new Profile();
obj.ProfileCode = ProfileCode;
if (Request.InputStream.Length > 0)
{
using (StreamReader reader = new StreamReader(Request.InputStream))
{
string hexString = Server.UrlEncode(reader.ReadToEnd());
string imageName = ProfileCode.Trim();
//string imageName = FirstName.Trim() + "_" + (string.IsNullOrEmpty(MiddleName) ? "" : MiddleName.Trim().Substring(0, 1) + "_") + (string.IsNullOrEmpty(LastName) ? "" : LastName.Trim());
string imagePath = string.Format("~/Documents/ProfileImages/{0}.png", imageName);
string directoryName = Server.MapPath("~/" + ProjectConfiguration.ProfileImageFolder);
if (!Directory.Exists(directoryName))
Directory.CreateDirectory(directoryName);
if (!string.IsNullOrEmpty(imagePath))
{
string existingImage = Path.Combine(directoryName, imagePath);
if (System.IO.File.Exists(existingImage))
System.IO.File.Delete(existingImage);
System.IO.File.WriteAllBytes(Server.MapPath(imagePath), ConvertHexToBytes(hexString));
}
}
}
return PartialView("CaptureImage",obj);
}
private static byte[] ConvertHexToBytes(string hex)
{
byte[] bytes = new byte[hex.Length / 2];
for (int i = 0; i < hex.Length; i += 2)
{
bytes[i / 2] = Convert.ToByte(hex.Substring(i, 2), 16);
}
return bytes;
}
public JsonResult GetCapturedImage(string ProfileCode)
{
string imagePath = string.Format(System.Configuration.ConfigurationManager.AppSettings["ProfileImages"] + ProfileCode +".png");
return Json(imagePath);
}
我找到解决方案了!
"淡入" class 模型在 firefox 浏览器中显示网络摄像头结果时出现问题。