From 4afa471fb6359766277ac9a756f84ab379739160 Mon Sep 17 00:00:00 2001 From: zhaidi Date: Sat, 30 Mar 2024 23:45:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=8E=8B=E7=BC=A9=E6=AF=94?= =?UTF-8?q?=E4=BE=8Bquality=E4=B8=BA100?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- www/Camera.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/Camera.js b/www/Camera.js index 0eade0f..8d0b92b 100644 --- a/www/Camera.js +++ b/www/Camera.js @@ -136,7 +136,7 @@ cameraExport.getPicture = function (successCallback, errorCallback, options) { options = options || {}; var getValue = argscheck.getValue; - var quality = getValue(options.quality, 50); + var quality = getValue(options.quality, 100); var destinationType = getValue(options.destinationType, Camera.DestinationType.FILE_URI); var sourceType = getValue(options.sourceType, Camera.PictureSourceType.CAMERA); var targetWidth = getValue(options.targetWidth, -1);