こんにちは、私のウェブカメラから撮った写真を保存しようとしています。私は実際にこのコードを使用しています
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 (添付ファイルを確認してください)