diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-11-26 19:43:36 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-11-26 19:54:22 +0100 |
commit | bd7f2f8c987772704a5889790b2dc06fa087ee62 (patch) | |
tree | 0f0c4f7719f790f689aeebdb53928acf854f55ab /fastiv-io.h | |
parent | 8c897593254719a5331cf84b884c6590a5f16332 (diff) | |
download | fiv-bd7f2f8c987772704a5889790b2dc06fa087ee62.tar.gz fiv-bd7f2f8c987772704a5889790b2dc06fa087ee62.tar.xz fiv-bd7f2f8c987772704a5889790b2dc06fa087ee62.zip |
Handle Exif rotation
Does not currently work for SVG and X11 cursors.
Diffstat (limited to 'fastiv-io.h')
-rw-r--r-- | fastiv-io.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fastiv-io.h b/fastiv-io.h index db2d709..7bce925 100644 --- a/fastiv-io.h +++ b/fastiv-io.h @@ -57,9 +57,9 @@ typedef enum _FastivIoOrientation { FastivIoOrientationMirror0 = 2, FastivIoOrientation180 = 3, FastivIoOrientationMirror180 = 4, - FastivIoOrientationMirror90 = 5, + FastivIoOrientationMirror270 = 5, FastivIoOrientation90 = 6, - FastivIoOrientationMirror270 = 7, + FastivIoOrientationMirror90 = 7, FastivIoOrientation270 = 8 } FastivIoOrientation; |