在本机脚本中使用Camera时,我遇到了问题。我拍照时被撞坏了。 下面是我尝试过的代码。
功能onTap(){
const options = {
width: 300,
height: 300,
keepAspectRatio: false,
saveToGallery: true
};
camera.requestPermissions().then(
function success() {
camera.takePicture(options)
.then(function (imageAsset) {
console.log("Size: " + imageAsset.options.width + "x" + imageAsset.options.height);
console.log("keepAspectRatio: " + imageAsset.options.keepAspectRatio);
console.log("Photo saved in Photos/Gallery for Android or in Camera Roll for iOS");
}).catch(function (err) {
console.log("Error -> " + err.message);
});
});
}