diff --git a/src/android/CameraLauncher.java b/src/android/CameraLauncher.java index 3916b2b..57c0988 100644 --- a/src/android/CameraLauncher.java +++ b/src/android/CameraLauncher.java @@ -154,7 +154,7 @@ public class CameraLauncher extends CordovaPlugin implements MediaScannerConnect this.targetWidth = 0; this.encodingType = JPEG; this.mediaType = PICTURE; - this.mQuality = 50; + this.mQuality = 100; //Take the values from the arguments if they're not already defined (this is tricky) this.destType = args.getInt(1); diff --git a/src/ios/CDVCamera.m b/src/ios/CDVCamera.m index d4c084b..0f730e7 100644 --- a/src/ios/CDVCamera.m +++ b/src/ios/CDVCamera.m @@ -63,7 +63,7 @@ static NSString* toBase64(NSData* data) { { CDVPictureOptions* pictureOptions = [[CDVPictureOptions alloc] init]; - pictureOptions.quality = [command argumentAtIndex:0 withDefault:@(50)]; + pictureOptions.quality = [command argumentAtIndex:0 withDefault:@(100)]; pictureOptions.destinationType = [[command argumentAtIndex:1 withDefault:@(DestinationTypeFileUri)] unsignedIntegerValue]; pictureOptions.sourceType = [[command argumentAtIndex:2 withDefault:@(UIImagePickerControllerSourceTypeCamera)] unsignedIntegerValue];