大家好我试图保存从我的摄像头拍摄的图片。我实际上使用此代码
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)
{
}
}
}
应用程序运行,我看到的图像,我点击捕获按钮,它没有给出任何错误,直到这里,但但,但...没有图像也保存我从这里下载的样本:http://www.dotnetspider.com/resources/38150-Capture-save-images-from-Web-camera.aspx(检查附件)
2条答案
按热度按时间zdwk9cvp1#
更改路径..我也有同样的问题..您的C驱动器安全级别高,更改路径为“D:\Webcam.jpg”,它会工作
xcitsw882#
试试这篇文章。它工作得很好。但是当网络摄像头没有连接时,我不能使用自定义消息。它会给出一个自动生成的错误消息。
webcamlibrarydotnet