(mime-decode-text-body): Change interface; call
[elisp/semi.git] / mime-image.el
1 ;;; mime-image.el --- mime-view filter to display images
2
3 ;; Copyright (C) 1995,1996,1997,1998 MORIOKA Tomohiko
4 ;; Copyright (C) 1996 Dan Rich
5
6 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
7 ;;         Dan Rich <drich@morpheus.corp.sgi.com>
8 ;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
9 ;; Created: 1995/12/15
10 ;;      Renamed: 1997/2/21 from tm-image.el
11
12 ;; Keywords: image, picture, X-Face, MIME, multimedia, mail, news
13
14 ;; This file is part of SEMI (Showy Emacs MIME Interfaces).
15
16 ;; This program is free software; you can redistribute it and/or
17 ;; modify it under the terms of the GNU General Public License as
18 ;; published by the Free Software Foundation; either version 2, or (at
19 ;; your option) any later version.
20
21 ;; This program is distributed in the hope that it will be useful, but
22 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24 ;; General Public License for more details.
25
26 ;; You should have received a copy of the GNU General Public License
27 ;; along with GNU XEmacs; see the file COPYING.  If not, write to the
28 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
29 ;; Boston, MA 02111-1307, USA.
30
31 ;;; Commentary:
32 ;;      If you use this program with MULE, please install
33 ;;      etl8x16-bitmap.bdf font included in tl package.
34
35 ;;; Code:
36
37 (require 'mime-view)
38 (require 'alist)
39
40 (cond ((featurep 'xemacs)
41        (require 'images)
42        
43        (defun-maybe image-inline-p (format)
44          (or (memq format image-native-formats)
45              (find-if (function
46                        (lambda (native)
47                          (image-converter-chain format native)
48                          ))
49                       image-native-formats)
50              ))
51        
52        (image-register-netpbm-utilities)
53        (image-register-converter 'pic 'ppm "pictoppm")
54        (image-register-converter 'mag 'ppm "magtoppm")
55        
56        (defun bitmap-insert-xbm-file (file)
57          (let ((gl (make-glyph (list (cons 'x file))))
58                (e (make-extent (point) (point)))
59                )
60            (set-extent-end-glyph e gl)
61            ))
62        
63        ;;
64        ;; X-Face
65        ;;
66        (autoload 'highlight-headers "highlight-headers")
67        
68        (defun mime-preview-x-face-function-use-highlight-headers ()
69          (highlight-headers (point-min) (re-search-forward "^$" nil t) t)
70          )
71        
72        (add-hook 'mime-view-content-header-filter-hook
73                  'mime-preview-x-face-function-use-highlight-headers)
74        
75        )
76       ((featurep 'mule)
77        ;; for MULE 2.* or mule merged EMACS
78        (require 'x-face-mule)
79
80        (defvar image-native-formats '(xbm))
81        
82        (defun-maybe image-inline-p (format)
83          (memq format image-native-formats)
84          )
85        
86        (defun-maybe image-normalize (format data)
87          (and (eq format 'xbm)
88               (vector 'xbm ':data data)
89               ))
90        
91        ;;
92        ;; X-Face
93        ;;
94        (if (exec-installed-p uncompface-program exec-path)
95            (add-hook 'mime-view-content-header-filter-hook
96                      'x-face-decode-message-header)
97          )
98        ))
99
100 (or (fboundp 'image-invalid-glyph-p)
101     (defsubst image-invalid-glyph-p (glyph)
102       (or (null (aref glyph 0))
103           (null (aref glyph 2))
104           (equal (aref glyph 2) "")
105           ))
106     )
107
108 (mapcar (function
109          (lambda (rule)
110            (let ((type    (car rule))
111                  (subtype (nth 1 rule))
112                  (format  (nth 2 rule)))
113              (if (image-inline-p format)
114                  (ctree-set-calist-strictly
115                   'mime-preview-condition
116                   (list (cons 'type type)(cons 'subtype subtype)
117                         '(body . visible)
118                         '(body-presentation-method . with-filter)
119                         (cons 'body-filter
120                               #'mime-view-filter-for-image)
121                         (cons 'image-format format))
122                   )))))
123         '((image jpeg           jpeg)
124           (image gif            gif)
125           (image tiff           tiff)
126           (image x-tiff         tiff)
127           (image xbm            xbm)
128           (image x-xbm          xbm)
129           (image x-xpixmap      xpm)
130           (image x-pic          pic)
131           (image x-mag          mag)
132           (image png            png)
133           ))
134
135
136 ;;; @ content filter for images
137 ;;;
138 ;;    (for XEmacs 19.12 or later)
139
140 (defun mime-view-filter-for-image (situation)
141   (let ((beg (point-min))
142         (end (point-max)))
143     (remove-text-properties beg end '(face nil))
144     (message "Decoding image...")
145     (mime-decode-region beg end (cdr (assq 'encoding situation)))
146     (let ((gl (image-normalize (cdr (assq 'image-format situation))
147                                (buffer-string))))
148       (delete-region (point-min)(point-max))
149       (cond ((image-invalid-glyph-p gl)
150              (setq gl nil)
151              (message "Invalid glyph!")
152              )
153             ((eq (aref gl 0) 'xbm)
154              (let ((xbm-file
155                     (make-temp-name
156                      (expand-file-name "tm" mime-temp-directory))))
157                (insert (aref gl 2))
158                (write-region (point-min)(point-max) xbm-file)
159                (message "Decoding image...")
160                (delete-region (point-min)(point-max))
161                (bitmap-insert-xbm-file xbm-file)
162                (delete-file xbm-file)
163                )
164              (message "Decoding image... done")
165              )
166             (t
167              (setq gl (make-glyph gl))
168              (let ((e (make-extent (point) (point))))
169                (set-extent-end-glyph e gl)
170                )
171              (message "Decoding image... done")
172              ))
173       )
174     (insert "\n")
175     ))
176
177
178 ;;; @ content filter for Postscript
179 ;;;
180 ;;    (for XEmacs 19.14 or later)
181
182 ;; (defvar mime-view-ps-to-gif-command "pstogif")
183
184 ;; (defun mime-view-filter-for-application/postscript (ctype params encoding)
185 ;;   (let* ((beg (point-min)) (end (point-max))
186 ;;          (file-base
187 ;;           (make-temp-name (expand-file-name "tm" mime-temp-directory)))
188 ;;          (ps-file (concat file-base ".ps"))
189 ;;          (gif-file (concat file-base ".gif"))
190 ;;          )
191 ;;     (remove-text-properties beg end '(face nil))
192 ;;     (message "Decoding Postscript...")
193 ;;     (mime-decode-region beg end encoding)
194 ;;     (write-region (point-min)(point-max) ps-file) 
195 ;;     (message "Decoding Postscript...")
196 ;;     (delete-region (point-min)(point-max))
197 ;;     (call-process mime-view-ps-to-gif-command nil nil nil ps-file)
198 ;;     (set-extent-end-glyph (make-extent (point) (point))
199 ;;                           (make-glyph (vector 'gif :file gif-file)))
200 ;;     (message "Decoding Postscript... done")
201 ;;     (delete-file ps-file)
202 ;;     (delete-file gif-file)
203 ;;     ))
204
205 ;; If you would like to display inline Postscript image, please
206 ;; activate following:
207
208 ;; (set-alist 'mime-view-content-filter-alist
209 ;;            "application/postscript"
210 ;;            (function mime-view-filter-for-application/postscript))
211
212 ;; (if (featurep 'gif)
213 ;;     (add-to-list
214 ;;      'mime-view-visible-media-type-list "application/postscript")
215 ;;   )
216
217
218 ;;; @ end
219 ;;;
220
221 (provide 'mime-image)
222
223 ;;; mime-image.el ends here