Camera Phonegap

53 Views Asked by At

I'm trying to get a low quality image from the cordova camera plugin on phonegap, I'm passing the quality params. But whatever percentage I send I still get the full quality.

var options = {
  quality: 5,
  destinationType: 1,
  sourceType: 1,
  saveToPhotoAlbum: true,
  correctOrientation: true
};
navigator.camera.getPicture(onSuccess, onFail, options);
0

There are 0 best solutions below