写真を撮って保存しましたが、画像処理が必要です。次のコードを使用してみましたがWritableBitmap
、ビットマップを受け入れません。ストリームが必要です。
var writeableBitmap = new WritableBitmap(bitmap);
コードは次のとおりです。
CameraCaptureUI cam = new CameraCaptureUI();
var capturedImage = await cam.CaptureFileAsync(CameraCaptureUIMode.Photo);
if (capturedImage != null)
{
var img = new BitmapImage();
img.SetSource(await capturedImage.OpenReadAsync());
}