0
我正試圖在Windows 8上初始化攝像頭。我已啓用項目和我的Windows 8設備上的攝像頭功能。如何在Windows 8中正確初始化相機?
這裏是我的代碼:
var dialog = new Windows.Media.Capture.CameraCaptureUI();
var aspectRatio = { width: 1, height: 1 };
dialog.photoSettings.croppedAspectRatio = aspectRatio;
dialog.captureFileAsync(Windows.Media.Capture.CameraCaptureUIMode.photo).done(function (file) {
if (file) {
editPreviewPicture(file);
mainApp.pictureAccept('control');
} else {
}
}, function (e) {
console.log("Error while opening camera: ", e);
});
在有「captureFileAsync」我收到以下錯誤行:
Runtime-error JavaScript: Access Denied.
我有雙重檢查所需要的一切,甚至下載示例項目檢查代碼並測試相機,在該項目中一切正常。
在此先感謝。