Github user nikhilkh commented on a diff in the pull request: https://github.com/apache/cordova-plugin-camera/pull/88#discussion_r28708855 --- Diff: src/windows/CameraProxy.js --- @@ -310,29 +319,50 @@ function takePictureFromCameraWP(successCallback, errorCallback, args) { tempFolder.createFileAsync(fileName, generateUniqueCollisionOption) .then(function(tempCapturedFile) { - capturedFile = tempCapturedFile; - return capture.capturePhotoToStorageFileAsync(encodingProperties, capturedFile); + return new WinJS.Promise(function (complete) { + var imgStream = new Windows.Storage.Streams.InMemoryRandomAccessStream(); --- End diff -- Some comments on why the rotation needs to be done will be good - since its not quite obvious.
--- 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