我正在尝试使用相机创建照片的缩略图,但我失败了,有人可以给我一个想法吗?
我正在使用PhoneGap,javascript,html和css
答案 0 :(得分:2)
试试这个:
$('#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 }
);
});