Re: [Interest] Qt 5.4.2 snapshot ios camera capture issue

2015-05-11 Thread Till Oliver Knoll
> Am 11.05.2015 um 17:49 schrieb Lopes Yoann : > > >> On 11 May 2015, at 17:12, Jason H wrote: >> >> This breaks our app and back-end processing for mobile. How do we fix this? > You could read the image orientation from the EXIF header in your app and > apply the rotation to the QML Image e

Re: [Interest] Qt 5.4.2 snapshot ios camera capture issue

2015-05-11 Thread Lopes Yoann
I assumed you were using the URL from the imageSaved() signal, not from the imageCaptured() signal. In that case, no, you can’t read the EXIF reader from that URL. However, I didn’t think about that earlier but there’s an even simpler workaround. If your VideoOutput’s autoOrientation property is

Re: [Interest] Qt 5.4.2 snapshot ios camera capture issue

2015-05-11 Thread Jason H
be able to display it as captured.   Will the exif suggestion work with that?       Sent: Monday, May 11, 2015 at 11:49 AM From: "Lopes Yoann" To: "Jason H" Cc: "Lopes Yoann" , "Interests Qt" Subject: Re: [Interest] Qt 5.4.2 snapshot ios camera cap

Re: [Interest] Qt 5.4.2 snapshot ios camera capture issue

2015-05-11 Thread Lopes Yoann
On 11 May 2015, at 17:12, Jason H mailto:jh...@gmx.com>> wrote: This breaks our app and back-end processing for mobile. How do we fix this? You could read the image orientation from the EXIF header in your app and apply the rotation to the QML Image element. — Yoann ___

Re: [Interest] Qt 5.4.2 snapshot ios camera capture issue

2015-05-11 Thread Jason H
For us, it was a very welcomed behavioral change. Will this be in 5.5 then? This breaks our app and back-end processing for mobile. How do we fix this?       Sent: Monday, May 11, 2015 at 7:28 AM From: "Lopes Yoann" To: "Jason H" Cc: "Interests Qt" Subject: Re

Re: [Interest] Qt 5.4.2 snapshot ios camera capture issue

2015-05-11 Thread Lopes Yoann
This is not caused by a change in the AVFoundation plugin. EXIF orientation support in QImage was added in 5.4.0 but it was then removed in 5.4.2 because it was a behavioral change. See https://codereview.qt-project.org/#/c/111398/ and https://bugreports.qt.io/browse/QTBUG-37946. -- Yoann _

Re: [Interest] Qt 5.4.2 snapshot ios camera capture issue

2015-05-08 Thread Jason H
Camera.orientation and VideoOutput.orientation are 270, regardless of Qt version. So I think this is introduced by the changes around AVFoundation. > Sent: Friday, May 08, 2015 at 3:07 PM > From: "Jason H" > To: "Interests Qt" > Subject: [Interest] Qt 5.4.2 s

[Interest] Qt 5.4.2 snapshot ios camera capture issue

2015-05-08 Thread Jason H
I have an app that takes photos. It works on desktop, Android and iOS. When running with 5.4.1, it takes pictures correctly. When running with 5.4.2 snapshot (04 May _111), it shows the image in the VideoOutput correctly, but when we get the image and display it in Image it comes out 90deg CCW.