カメラで撮った写真のサムネイルを作成しようとしていますが、失敗しました。誰かにアイデアを教えてもらえますか?
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 }
);
});