annotate lisp/w3/images.el @ 2:ac2d302a0011 r19-15b2

Import from CVS: tag r19-15b2
author cvs
date Mon, 13 Aug 2007 08:46:35 +0200
parents 376386a54a3c
children 9ee227acff29
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1 ;;; images.el --- Automatic image converters
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Author: wmperry
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3 ;; Created: 1996/06/30 18:00:34
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
4 ;; Version: 1.2
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Keywords: images
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
8 ;;; Copyright (c) 1995 - 1996 by William M. Perry (wmperry@cs.indiana.edu)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;;; This file is not part of GNU Emacs, but the same permissions apply.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;;; along with GNU Emacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;;; The emacsen compatibility package - load it up before anything else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 (eval-and-compile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 (load-library "w3-sysdp"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 (defvar image-temp-stack nil "Do no touch - internal storage.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 (defvar image-converters nil "Storage for the image converters.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (defvar image-native-formats
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 (delq nil (cons (if (featurep 'x) 'xbm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (mapcar (function (lambda (x) (if (featurep x) x)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 '(xpm gif jpeg tiff png))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 "A list of image formats that this version of emacs supports natively.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 (defun image-register-converter (from to converter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 "Register the image converter for FROM to TO. CONVERTER is the actual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 command used to convert the image. If this is a string, it will be executed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 in a subprocess. If a symbol, it is assumed to be a function. It will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 called with two arguments, the start and end of the data to be converted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 The function should replace that data with the new image data. The return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 value is not significant."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (let* ((node (assq from image-converters))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (replace (assq to (cdr-safe node))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 (replace ; Replace existing converter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (setcdr replace converter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (display-warning 'image (format "Replacing image converter %s->%s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 from to)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (node ; Add to existing node
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (setcdr node (cons (cons to converter) (cdr node))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (t ; New toplevel converter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (setq image-converters (cons (cons from (list (cons to converter)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 image-converters))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (defun image-unregister-converter (from to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 "Unregister the image converter for FROM to TO"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (let* ((node (assq from image-converters))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (tos (cdr-safe node))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (new nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (while tos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (if (eq to (car (car tos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (setq new (cons (car tos) new)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (setq tos (cdr tos)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (setcdr node new)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (defun image-converter-registered-p (from to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (cdr-safe (assq to (cdr-safe (assq from image-converters)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (defun image-converter-chain (from to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 "Return the shortest converter chain for image format FROM to TO"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (setq image-temp-stack (cons from image-temp-stack))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (let ((converters (cdr-safe (assq from image-converters)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (thisone nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (possibles nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (done nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (while (and (not done) converters)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (setq thisone (car converters))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 ((eq (car thisone) to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (setq done t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 ((memq (car thisone) image-temp-stack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (setq possibles (cons (image-converter-chain (car thisone) to)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 possibles))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (setq converters (cdr converters)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (setq image-temp-stack (cdr image-temp-stack)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 possibles (sort (delq nil possibles)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (lambda (x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (< (length (delete 'ignore x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (length (delete 'ignore y)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (if (not done)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (setq done (car possibles)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 ((eq done t) (list (cdr thisone)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (done (setq done (cons (cdr thisone) done)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (t nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 (defun image-normalize (format data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 "Return an image specification for XEmacs 19.13 and later. FORMAT specifies
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 the image format, DATA is the image data as a string. Any conversions to get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 to a suitable internal image format will be carried out."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (setq image-temp-stack nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (if (stringp format) (setq format (intern format)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (if (not (memq format image-native-formats))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (let* ((winner (car-safe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (sort (mapcar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (lambda (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (cons x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (delete 'ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (image-converter-chain format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 x)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 image-native-formats)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (lambda (x y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 ((null (cdr x)) nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 ((= (length (cdr x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (length (cdr y)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (< (length (memq (car x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 image-native-formats))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (length (memq (car y)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 image-native-formats))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (< (length (cdr x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (length (cdr y))))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (type (car-safe winner))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (chain (cdr-safe winner))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (if chain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (set-buffer (generate-new-buffer " *image-conversion*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (insert data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (while chain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 ((stringp (car chain))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (shell-command-on-region (point-min) (point-max)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 "/bin/sh -c '"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (car chain)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 " 2> /dev/null"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 "'") t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 ((and (symbolp (car chain)) (fboundp (car chain)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (funcall (car chain) (point-min) (point-max))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (setq chain (cdr chain)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (setq data (buffer-string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (kill-buffer (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (setq type format))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (vector type ':data data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (vector format ':data data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (defun image-register-netpbm-utilities ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 "Register all the netpbm utility packages converters."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (if (image-converter-registered-p 'xpm 'gif)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (image-register-converter 'pgm 'pbm "pgmtopbm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (image-register-converter 'ppm 'pgm "ppmtopgm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (image-register-converter 'pnm 'xpm "(ppmquant 256 | ppmtoxpm)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (image-register-converter 'ppm 'xpm "(ppmquant 256 | ppmtoxpm)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (image-register-converter 'xpm 'ppm "xpmtoppm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (image-register-converter 'gif 'ppm "giftopnm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (image-register-converter 'pnm 'gif "(ppmquant 256 | ppmtogif)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (image-register-converter 'ppm 'gif "(ppmquant 256 | ppmtogif)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (image-register-converter 'bmp 'ppm "bmptoppm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (image-register-converter 'ppm 'bmp "ppmtobmp")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (image-register-converter 'ppm 'ps "pnmtops")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (image-register-converter 'pnm 'ps "pnmtops")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (image-register-converter 'ps 'pnm "pstopnm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (image-register-converter 'g3 'pbm "g3topbm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (image-register-converter 'macpt 'pbm "macptopbm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (image-register-converter 'pbm 'macpt "pbmtomacp")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (image-register-converter 'pcx 'ppm "pcxtoppm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (image-register-converter 'ppm 'pcx "ppmtopcx")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (image-register-converter 'pict 'ppm "picttoppm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (image-register-converter 'ppm 'pict "ppmtopict")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (image-register-converter 'pnm 'sgi "pnmtosgi")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (image-register-converter 'tga 'ppm "tgatoppm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (image-register-converter 'ppm 'tga "ppmtotga")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (image-register-converter 'sgi 'pnm "sgitopnm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (image-register-converter 'tiff 'pnm "tifftopnm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (image-register-converter 'pnm 'tiff "pnmtotiff")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (image-register-converter 'xbm 'pbm "xbmtopbm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (image-register-converter 'pbm 'xbm "pbmtoxbm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (image-register-converter 'png 'pnm "pngtopnm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (image-register-converter 'pnm 'png "pnmtopng")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (image-register-converter 'pnm 'jbg "pbmtojbg")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (image-register-converter 'jbg 'pnm "jbgtopbm")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (image-register-converter 'jpeg 'ppm "djpeg")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 (provide 'images)