大家好我试图保存从我的网络摄像头拍摄的照片。 即时通常使用此代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;
public partial class ImageConversions : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
CreatePhoto();
}
void CreatePhoto()
{
try
{
string strPhoto = Request.Form["imageData"]; //Get the image from flash file
byte[] photo = Convert.FromBase64String(strPhoto);
FileStream fs = new FileStream("C:\\Webcam.jpg", FileMode.OpenOrCreate, FileAccess.Write);
BinaryWriter br = new BinaryWriter(fs);
br.Write(photo);
br.Flush();
br.Close();
fs.Close();
}
catch (Exception Ex)
{
}
}
}
应用程序RUNS,我看到图像,我点击捕获按钮它没有给出任何错误,直到这里但但是......没有图像被保存我从下载了样本 这里:http://www.dotnetspider.com/resources/38150-Capture-save-images-from-Web-camera.aspx(查看附件)
答案 0 :(得分:0)
试试这篇文章。它的效果非常好。但是,当没有连接网络摄像头时,我无法使用自定义消息。它会自动生成错误消息。
答案 1 :(得分:0)
改变路径..我也有同样的问题.. 您的C盘安全级别高, 将路径更改为“D:\ Webcam.jpg”,它将起作用