修改压缩比例quality为100

This commit is contained in:
翟迪 2024-03-30 23:45:02 +08:00
parent a19ba493b3
commit 4afa471fb6

View File

@ -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);