[ui] fix scaling for Exif orientation tags 5 to 8

This commit is contained in:
mugulmd 2023-01-03 09:29:32 -08:00
parent 116d6467f1
commit 17093279f5
2 changed files with 28 additions and 10 deletions

View file

@ -9,10 +9,10 @@ import QtQuick 2.11
* - set the xOrigin/yOrigin properties to specify the transform origin.
*/
Loader {
property var orientationTag: undefined
property var orientationTag: undefined
property real xOrigin: 0
property real yOrigin: 0
property real xOrigin: 0
property real yOrigin: 0
transform: [
Rotation {
@ -53,6 +53,7 @@ Loader {
}
}
origin.x: xOrigin
origin.y: yOrigin
}
]
}