|
发表于 2016-7-21 13:32:51
|
显示全部楼层
navigator.camera.getPicture(onLoadImageSuccess, onLoadImageFail, {
destinationType:navigator.camera.DestinationType.DATA_URL,
sourceType:1,
// sourceType:navigator.camera.PictureSourceType.CAMERA,//0 2相册中选择 1 拍照
mediaType : 0,//只选择图片
allowEdit:true,
quality:80,
targetWidth:100,
targetHeight:100,
saveToPhotoAlbum:true
});
这是我的参数 |
|