Github user omefire commented on a diff in the pull request: https://github.com/apache/cordova-plugin-camera/pull/185#discussion_r55746051 --- Diff: src/ios/CDVCamera.m --- @@ -145,9 +198,38 @@ - (void)takePicture:(CDVInvokedUrlCommand*)command [self.commandDelegate runInBackground:^{ CDVPictureOptions* pictureOptions = [CDVPictureOptions createFromTakePictureArguments:command]; + + /* + FIXME #1 + What to do about quality? + If the option is set and the image is retrieved from the PhotoLibrary or SavedAlbum with a NATIVE_URI, no editing, + and is not saved to the photo album, then we return the "wrong" image. + However, the doc says "quality of the **saved** image", so it might be fine. + */ + /* + FIXME #2 + The doc says: "Rotate the image to correct for the orientation of the device **during capture**." + Is capture <=> sourceType == CAMERA ? + */ + // Check for option compatibility + BOOL isDestinationNativeUri = (pictureOptions.destinationType == DestinationTypeNativeUri); + + BOOL needsResize = [self needsResize:pictureOptions]; --- End diff -- Please, change 'selft' => 'weakSelf". possible retain cycle.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org For additional commands, e-mail: dev-h...@cordova.apache.org