]> git.eshelyaron.com Git - emacs.git/commitdiff
mm-decode.el (mm-inline-media-tests): Support imagemagick images.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Sat, 17 Sep 2011 12:02:10 +0000 (12:02 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Sat, 17 Sep 2011 12:02:10 +0000 (12:02 +0000)
lisp/gnus/ChangeLog
lisp/gnus/mm-decode.el

index 211c4455717cb5887f5197148ca8e2918503e059..fa22d1a5ea1473b8e59a0451b5e7e44af6ba32b4 100644 (file)
@@ -1,3 +1,7 @@
+2011-09-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * mm-decode.el (mm-inline-media-tests): Support imagemagick images.
+
 2011-09-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * gnus-sum.el (gnus-summary-read-group-1): Bump the "Retrieving"
index 692175d471fc4d11596f5ba52d0118bb782cc777..6e56213c327cbbc4b43fc63668c6b9eb1a11c996 100644 (file)
@@ -195,7 +195,7 @@ before the external MIME handler is invoked."
     ("image/tiff"
      mm-inline-image
      (lambda (handle)
-       (mm-valid-and-fit-image-p 'tiff handle)) )
+       (mm-valid-and-fit-image-p 'tiff handle)))
     ("image/xbm"
      mm-inline-image
      (lambda (handle)
@@ -265,6 +265,20 @@ before the external MIME handler is invoked."
     ("multipart/alternative" ignore identity)
     ("multipart/mixed" ignore identity)
     ("multipart/related" ignore identity)
+    ("image/*"
+     mm-inline-image
+     (lambda (handle)
+       (and (mm-valid-image-format-p 'imagemagick)
+           (mm-with-unibyte-buffer
+             (mm-insert-part handle)
+             (let ((image
+                    (ignore-errors
+                      (if (fboundp 'create-image)
+                          (create-image (buffer-string) 'imagemagick 'data-p)
+                        (mm-create-image-xemacs type)))))
+               (when image
+                 (setcar (cdr handle) (list "image/imagemagick"))
+                 (mm-image-fit-p handle)))))))
     ;; Disable audio and image
     ("audio/.*" ignore ignore)
     ("image/.*" ignore ignore)