]> code.delx.au - gnu-emacs/commitdiff
Revert "Support integer image rotation and respect EXIF rotations"
authorLars Ingebrigtsen <larsi@gnus.org>
Thu, 11 Feb 2016 03:05:24 +0000 (14:05 +1100)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 11 Feb 2016 03:05:48 +0000 (14:05 +1100)
This reverts commit 0f600496050bf435f55dc81056e06fcd45992dc8.

This change does not work on Fedora.

src/image.c

index 45abfc7af76ae1bb0271714440b0135cdda76b1f..144fe30a7466497eb0905331cd982e8c13ebf978 100644 (file)
@@ -8546,16 +8546,6 @@ imagemagick_load_image (struct frame *f, struct image *img,
       return 0;
     }
 
-  /* If no :rotation is explicitly specified, apply the automatic
-     rotation from EXIF. */
-  if (NILP (image_spec_value (img->spec, QCrotation, NULL)))
-    if (MagickAutoOrientImage (image_wand) == MagickFalse)
-      {
-        image_error ("Error applying automatic orientation in image `%s'", img->spec);
-        DestroyMagickWand (image_wand);
-        return 0;
-      }
-
   if (ino < 0 || ino >= MagickGetNumberImages (image_wand))
     {
       image_error ("Invalid image number `%s' in image `%s'", image, img->spec);
@@ -8656,7 +8646,7 @@ imagemagick_load_image (struct frame *f, struct image *img,
     image_spec_value (img->spec, QCbackground, NULL); if (!STRINGP
     (specified_bg).  */
   value = image_spec_value (img->spec, QCrotation, NULL);
-  if (FLOATP (value) || INTEGERP (value))
+  if (FLOATP (value))
     {
       rotation = extract_float (value);
       status = MagickRotateImage (image_wand, bg_wand, rotation);