Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Phonegap application that uses the camera Cordova API to take a picture and upload it to my server upon successful capture. The only problem is that the quality of the image is too good. It will really be a problem when I reach a higher user count.

Here is my javascript:

function capture() {
    navigator.camera.getPicture(cameraSuccess, cameraError, { 
        quality: 5, 
        destinationType: destinationType.FILE_URI,
        sourceType : sourceType.CAMERA,
        encodingType: encodingType.JPEG,
        targetWidth: 300
    });
}

The file being uploaded is about 240KB in size and more then 1200 pixels wide.

I tried adding the "quality" and "targetWidth" within the options to change the quality of the image, but to no avail.

Any help would be appreciated, thanks!

share|improve this question
1  
Can you use canvas to make the image smaller? – Gerben May 21 '12 at 20:24
How would I go about doing that? Could you post an answer? – Karl May 21 '12 at 20:57
1  
This might help: stackoverflow.com/questions/2303690/… – Gerben May 22 '12 at 7:39
Post your link as an answer if you want reputation points. – Karl Jun 4 '12 at 2:16
You can use use canvas to make the image smaller. See stackoverflow.com/questions/2303690/… – Gerben Jun 4 '12 at 17:25

1 Answer

up vote 0 down vote accepted

So I took @Gerben advice and I used html5 canvas to modify my image before using javascript (jQuery) to post it to the server.

Here is the link.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.