Rename 'mime-view-filter-for-* -> 'mime-preview-filter-for-*.
[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 #'mime-preview-filter-for-image)
120                         (cons 'image-format format))
121                   )))))
122         '((image jpeg           jpeg)
123           (image gif            gif)
124           (image tiff           tiff)
125           (image x-tiff         tiff)
126           (image xbm            xbm)
127           (image x-xbm          xbm)
128           (image x-xpixmap      xpm)
129           (image x-pic          pic)
130           (image x-mag          mag)
131           (image png            png)
132           ))
133
134
135 ;;; @ content filter for images
136 ;;;
137 ;;    (for XEmacs 19.12 or later)
138
139 (defun mime-preview-filter-for-image (situation)
140   (let ((beg (point-min))
141         (end (point-max)))
142     (remove-text-properties beg end '(face nil))
143     (message "Decoding image...")
144     (mime-decode-region beg end (cdr (assq 'encoding situation)))
145     (let ((gl (image-normalize (cdr (assq 'image-format situation))
146                                (buffer-string))))
147       (delete-region (point-min)(point-max))
148       (cond ((image-invalid-glyph-p gl)
149              (setq gl nil)
150              (message "Invalid glyph!")
151              )
152             ((eq (aref gl 0) 'xbm)
153              (let ((xbm-file
154                     (make-temp-name
155                      (expand-file-name "tm" mime-temp-directory))))
156                (insert (aref gl 2))
157                (write-region (point-min)(point-max) xbm-file)
158                (message "Decoding image...")
159                (delete-region (point-min)(point-max))
160                (bitmap-insert-xbm-file xbm-file)
161                (delete-file xbm-file)
162                )
163              (message "Decoding image... done")
164              )
165             (t
166              (setq gl (make-glyph gl))
167              (let ((e (make-extent (point) (point))))
168                (set-extent-end-glyph e gl)
169                )
170              (message "Decoding image... done")
171              ))
172       )
173     (insert "\n")
174     ))
175
176
177 ;;; @ content filter for Postscript
178 ;;;
179 ;;    (for XEmacs 19.14 or later)
180
181 ;; (defvar mime-view-ps-to-gif-command "pstogif")
182
183 ;; (defun mime-preview-filter-for-application/postscript (ctype params encoding)
184 ;;   (let* ((beg (point-min)) (end (point-max))
185 ;;          (file-base
186 ;;           (make-temp-name (expand-file-name "tm" mime-temp-directory)))
187 ;;          (ps-file (concat file-base ".ps"))
188 ;;          (gif-file (concat file-base ".gif"))
189 ;;          )
190 ;;     (remove-text-properties beg end '(face nil))
191 ;;     (message "Decoding Postscript...")
192 ;;     (mime-decode-region beg end encoding)
193 ;;     (write-region (point-min)(point-max) ps-file) 
194 ;;     (message "Decoding Postscript...")
195 ;;     (delete-region (point-min)(point-max))
196 ;;     (call-process mime-view-ps-to-gif-command nil nil nil ps-file)
197 ;;     (set-extent-end-glyph (make-extent (point) (point))
198 ;;                           (make-glyph (vector 'gif :file gif-file)))
199 ;;     (message "Decoding Postscript... done")
200 ;;     (delete-file ps-file)
201 ;;     (delete-file gif-file)
202 ;;     ))
203
204 ;; If you would like to display inline Postscript image, please
205 ;; activate following:
206
207 ;; (set-alist 'mime-view-content-filter-alist
208 ;;            "application/postscript"
209 ;;            (function mime-preview-filter-for-application/postscript))
210
211 ;; (if (featurep 'gif)
212 ;;     (add-to-list
213 ;;      'mime-view-visible-media-type-list "application/postscript")
214 ;;   )
215
216
217 ;;; @ end
218 ;;;
219
220 (provide 'mime-image)
221
222 ;;; mime-image.el ends here