0
プラグインを使用しました。 画像を正常に取得して保存しましたが、画像の品質が悪かったです。カメラアプリでキャプチャするのと同じ品質で画像をキャプチャするオプションはありますか?cordovaのCameraPictureBackgroundプラグインで画質を変更する方法
function success(imgurl) {
console.log("Imgurl = " + imgurl);
//here I added my function to upload the saved pictures
//on my internet server using file-tranfer plugin
}
function onFail(message) {
alert('Failed because: ' + message);
}
function CaptureBCK() {
var options = {
name: "Image", //image suffix
dirName: "CameraPictureBackground", //foldername
orientation: "portrait", //or landscape
type: "back" //or front
};
window.plugins.CameraPictureBackground.takePicture(success, onFail, options);
}
<button onclick="CaptureBCK();">Capture Photo</button> <br>