summaryrefslogtreecommitdiff
path: root/src/imlib.c
diff options
context:
space:
mode:
authorOlof-Joachim Frahm <olof@macrolet.net>2018-10-04 02:18:42 +0200
committerOlof-Joachim Frahm <olof@macrolet.net>2018-10-04 02:18:42 +0200
commit0dd07456d361736b8f100c45b3edada6ef4f1e42 (patch)
tree340a6c327eadcac3d125db58a813016b07f79ec1 /src/imlib.c
parenta9d46da64d02561bf2f545b3271575b304eda913 (diff)
Add missing EXIF rotations.
Diffstat (limited to 'src/imlib.c')
-rw-r--r--src/imlib.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/imlib.c b/src/imlib.c
index f41cdcd..18547a9 100644
--- a/src/imlib.c
+++ b/src/imlib.c
@@ -294,10 +294,22 @@ int feh_load_image(Imlib_Image * im, feh_file * file)
}
file->ed = exifData;
- if (orientation == 3)
+ if (orientation == 2)
+ gib_imlib_image_flip_horizontal(*im);
+ else if (orientation == 3)
gib_imlib_image_orientate(*im, 2);
+ else if (orientation == 4)
+ gib_imlib_image_flip_vertical(*im);
+ else if (orientation == 5) {
+ gib_imlib_image_orientate(*im, 3);
+ gib_imlib_image_flip_vertical(*im);
+ }
else if (orientation == 6)
gib_imlib_image_orientate(*im, 1);
+ else if (orientation == 7) {
+ gib_imlib_image_orientate(*im, 3);
+ gib_imlib_image_flip_horizontal(*im);
+ }
else if (orientation == 8)
gib_imlib_image_orientate(*im, 3);
#endif