Return-Path: X-Original-To: apmail-cordova-dev-archive@www.apache.org Delivered-To: apmail-cordova-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B7597185D7 for ; Wed, 2 Mar 2016 06:20:08 +0000 (UTC) Received: (qmail 165 invoked by uid 500); 2 Mar 2016 06:20:08 -0000 Delivered-To: apmail-cordova-dev-archive@cordova.apache.org Received: (qmail 127 invoked by uid 500); 2 Mar 2016 06:20:08 -0000 Mailing-List: contact dev-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list dev@cordova.apache.org Received: (qmail 116 invoked by uid 99); 2 Mar 2016 06:20:08 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Mar 2016 06:20:08 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 0C086E025B; Wed, 2 Mar 2016 06:20:08 +0000 (UTC) From: omefire To: dev@cordova.apache.org Reply-To: dev@cordova.apache.org References: In-Reply-To: Subject: [GitHub] cordova-plugin-camera pull request: [iOS] Major refactor Content-Type: text/plain Message-Id: <20160302062008.0C086E025B@git1-us-west.apache.org> Date: Wed, 2 Mar 2016 06:20:08 +0000 (UTC) Github user omefire commented on a diff in the pull request: https://github.com/apache/cordova-plugin-camera/pull/185#discussion_r54684008 --- Diff: src/ios/CDVCamera.m --- @@ -145,9 +201,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]; + BOOL needsOrientationCorrection = pictureOptions.correctOrientation; + BOOL isSourceCamera = (pictureOptions.sourceType == UIImagePickerControllerSourceTypeCamera); + BOOL allowsEditing = pictureOptions.allowsEditing; + BOOL needsSavingToPhotoAlbum = (needsResize || needsOrientationCorrection || allowsEditing); + + // if one wants an edited image and a NATIVE_URI, the edited image must be in the assets library therefore one must set the saveToPhotoAlbum option to true. + if (!pictureOptions.saveToPhotoAlbum && isDestinationNativeUri && needsSavingToPhotoAlbum) { --- End diff -- Hmmm, I agree that we should ideally not save into the photoAlbum if the user hasn't specified it in the options. But on the other hand, the current behavior is to edit the image anyway, then go ahead and save it in the assets library/saved photo album anyway. Which one should we go with ? I'm not really sure. --- 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 infrastructure@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@cordova.apache.org For additional commands, e-mail: dev-help@cordova.apache.org