我正在尝试创建我用相机拍摄的照片的缩略图,但我失败了,有人可以给我一个想法吗?
我正在使用 PhoneGap、javascript、html 和 css
我正在尝试创建我用相机拍摄的照片的缩略图,但我失败了,有人可以给我一个想法吗?
我正在使用 PhoneGap、javascript、html 和 css
尝试这个:
$('#button').click(function(){
navigator.camera.getPicture(
function(imageURI){
$('img').attr('src',imageURI).css({'background-size': '100%', 'background-repeat': 'no-repeat', 'width': '100px'});
},
function(message) { alert('Get picture failed'); },
{ quality: 60,
destinationType: navigator.camera.DestinationType.FILE_URI,
sourceType: navigator.camera.PictureSourceType.CAMERA,
mediaType: Camera.MediaType.PICTURE,
correctOrientation: true }
);
});