diff options
| -rw-r--r-- | lisp/image.el | 2 | ||||
| -rw-r--r-- | src/image.c | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/image.el b/lisp/image.el index 82e01624889..c34db68a44a 100644 --- a/lisp/image.el +++ b/lisp/image.el | |||
| @@ -102,7 +102,7 @@ AUTODETECT can be | |||
| 102 | (see `image-type-available-p').") | 102 | (see `image-type-available-p').") |
| 103 | 103 | ||
| 104 | (defvar image-format-suffixes | 104 | (defvar image-format-suffixes |
| 105 | '((image/x-icon "ico")) | 105 | '((image/x-rgb "rgb") (image/x-icon "ico")) |
| 106 | "An alist associating image types with file name suffixes. | 106 | "An alist associating image types with file name suffixes. |
| 107 | This is used as a hint by the ImageMagick library when detecting | 107 | This is used as a hint by the ImageMagick library when detecting |
| 108 | the type of image data (that does not have an associated file name). | 108 | the type of image data (that does not have an associated file name). |
diff --git a/src/image.c b/src/image.c index b5b713c9061..a87dc4d4737 100644 --- a/src/image.c +++ b/src/image.c | |||
| @@ -8540,6 +8540,14 @@ imagemagick_load_image (struct frame *f, struct image *img, | |||
| 8540 | status = MagickReadImage (image_wand, filename); | 8540 | status = MagickReadImage (image_wand, filename); |
| 8541 | else | 8541 | else |
| 8542 | { | 8542 | { |
| 8543 | Lisp_Object lwidth = image_spec_value (img->spec, QCwidth, NULL); | ||
| 8544 | Lisp_Object lheight = image_spec_value (img->spec, QCheight, NULL); | ||
| 8545 | |||
| 8546 | if (NATNUMP (lwidth) && NATNUMP (lheight)) | ||
| 8547 | { | ||
| 8548 | MagickSetSize (image_wand, XFASTINT (lwidth), XFASTINT (lheight)); | ||
| 8549 | MagickSetDepth (image_wand, 8); | ||
| 8550 | } | ||
| 8543 | filename_hint = imagemagick_filename_hint (img->spec, hint_buffer); | 8551 | filename_hint = imagemagick_filename_hint (img->spec, hint_buffer); |
| 8544 | MagickSetFilename (image_wand, filename_hint); | 8552 | MagickSetFilename (image_wand, filename_hint); |
| 8545 | status = MagickReadImageBlob (image_wand, contents, size); | 8553 | status = MagickReadImageBlob (image_wand, contents, size); |