Windows 8 デスクトップ アプリで、C# 4.5 のカメラを使用して写真を撮る必要があります。
CameraCaptureUI クラスを使用しようとしましたが、デスクトップ アプリでは使用できません。
そこで、Metro アプリまたはデスクトップ アプリで利用できる MediaCapture クラスを使用してみます。ここにある例に基づいて、うまく機能します: http://code.msdn.microsoft.com/windowsapps/media-capture-sample-adf87622/
var capture = new MediaCapture();
// Find the camera device id to use
string deviceId = "";
var devices = await Windows.Devices.Enumeration.DeviceInformation.FindAllAsync(Windows.Devices.Enumeration.DeviceClass.VideoCapture);
for (var i = 0; i < devices.Count; i++) {
Console.WriteLine(devices[i]);
deviceId = devices[i].Id;
}
// init the settings of the capture
var settings = new MediaCaptureInitializationSettings();
settings.AudioDeviceId = "";
settings.VideoDeviceId = deviceId;
settings.PhotoCaptureSource = Windows.Media.Capture.PhotoCaptureSource.Photo;
settings.StreamingCaptureMode = Windows.Media.Capture.StreamingCaptureMode.Video;
await capture.InitializeAsync(settings);
// Find the highest resolution available
VideoEncodingProperties resolutionMax = null;
int max = 0;
var resolutions = capture.VideoDeviceController.GetAvailableMediaStreamProperties(MediaStreamType.Photo);
for (var i = 0; i < resolutions.Count; i++) {
VideoEncodingProperties res = (VideoEncodingProperties)resolutions[i];
Console.WriteLine("resolution : " + res.Width + "x" + res.Height);
if (res.Width * res.Height > max) {
max = (int)(res.Width * res.Height);
resolutionMax = res;
}
}
await capture.VideoDeviceController.SetMediaStreamPropertiesAsync(MediaStreamType.Photo, resolutionMax);
ImageEncodingProperties imageProperties = ImageEncodingProperties.CreateJpeg();
var fPhotoStream = new InMemoryRandomAccessStream();
// THE 2 LINES I NEED TO ADD
// captureElement.Source = capture;
// await capture.StartPreviewAsync();
// Take the photo and show it on the screen
await capture.CapturePhotoToStreamAsync(imageProperties, fPhotoStream);
await fPhotoStream.FlushAsync();
fPhotoStream.Seek(0);
byte[] bytes = new byte[fPhotoStream.Size];
await fPhotoStream.ReadAsync(bytes.AsBuffer(), (uint)fPhotoStream.Size, InputStreamOptions.None);
BitmapImage bitmapImage = new BitmapImage();
MemoryStream byteStream = new MemoryStream(bytes);
bitmapImage.BeginInit();
bitmapImage.StreamSource = byteStream;
bitmapImage.EndInit();
image.Source = bitmapImage;
カメラを使用して写真を撮ることはできますが、写真を撮る前にプレビューを表示できません。プレビューを表示できるようにするには、コンポーネント CaptureElement を使用する必要があります。たとえば、次のコードを使用します。
captureElement.Source = mediaCapture;
await mediaCapture.startPreviewAsync();
残念ながら、ストア以外のアプリでは CaptureElement を使用できません。カメラのプレビューを表示できるようにするために、WPF または WinForm アプリで使用できる別のコンポーネントはありますか?