(tutorial--default-keys): Check M-DEL, not `M-backspace'.
[bpt/emacs.git] / lisp / image.el
CommitLineData
7840ced1
GM
1;;; image.el --- image API
2
0d30b337 3;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003,
d7a0267c 4;; 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
634f4a67
PJ
5
6;; Maintainer: FSF
04799cf5 7;; Keywords: multimedia
7840ced1
GM
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
086add15
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
7840ced1
GM
25
26;;; Commentary:
27
28;;; Code:
29
77f6105c
MB
30
31(defgroup image ()
32 "Image support."
33 :group 'multimedia)
34
35
4fde92ef 36(defconst image-type-header-regexps
6642c904
JB
37 '(("\\`/[\t\n\r ]*\\*.*XPM.\\*/" . xpm)
38 ("\\`P[1-6][[:space:]]+\\(?:#.*[[:space:]]+\\)*[0-9]+[[:space:]]+[0-9]+" . pbm)
39 ("\\`GIF8" . gif)
40 ("\\`\x89PNG\r\n\x1a\n" . png)
2dca7106
RS
41 ("\\`[\t\n\r ]*#define \\([a-z0-9]+\\)_width [0-9]+\n\
42#define \\1_height [0-9]+\n\
43static char \\1_bits" . xbm)
6642c904
JB
44 ("\\`\\(?:MM\0\\*\\|II\\*\0\\)" . tiff)
45 ("\\`[\t\n\r ]*%!PS" . postscript)
46 ("\\`\xff\xd8" . (image-jpeg-p . jpeg)))
47 "Alist of (REGEXP . IMAGE-TYPE) pairs used to auto-detect image types.
7840ced1 48When the first bytes of an image file match REGEXP, it is assumed to
6642c904
JB
49be of image type IMAGE-TYPE if IMAGE-TYPE is a symbol. If not a symbol,
50IMAGE-TYPE must be a pair (PREDICATE . TYPE). PREDICATE is called
51with one argument, a string containing the image data. If PREDICATE returns
52a non-nil value, TYPE is the image's type.")
8a8ef149 53
4fde92ef
KS
54(defconst image-type-file-name-regexps
55 '(("\\.png\\'" . png)
56 ("\\.gif\\'" . gif)
57 ("\\.jpe?g\\'" . jpeg)
58 ("\\.bmp\\'" . bmp)
59 ("\\.xpm\\'" . xpm)
60 ("\\.pbm\\'" . pbm)
61 ("\\.xbm\\'" . xbm)
62 ("\\.ps\\'" . postscript)
63 ("\\.tiff?\\'" . tiff))
64 "Alist of (REGEXP . IMAGE-TYPE) pairs used to identify image files.
65When the name of an image file match REGEXP, it is assumed to
66be of image type IMAGE-TYPE.")
67
6642c904
JB
68(defvar image-type-auto-detectable
69 '((pbm . t)
70 (xbm . t)
71 (bmp . maybe)
72 (gif . maybe)
73 (png . maybe)
74 (xpm . maybe)
75 (jpeg . maybe)
76 (tiff . maybe)
77 (postscript . nil))
78 "Alist of (IMAGE-TYPE . AUTODETECT) pairs used to auto-detect image files.
79\(See `image-type-auto-detected-p').
80
81AUTODETECT can be
82 - t always auto-detect.
83 - nil never auto-detect.
84 - maybe auto-detect only if the image type is available
85 (see `image-type-available-p').")
4fde92ef 86
dada660a 87(defvar image-load-path nil
5fc5ac38 88 "List of locations in which to search for image files.
93a75651
CY
89If an element is a string, it defines a directory to search.
90If an element is a variable symbol whose value is a string, that
91value defines a directory to search.
92If an element is a variable symbol whose value is a list, the
93value is used as a list of directories to search.")
5fc5ac38 94
dada660a
RS
95(eval-at-startup
96 (setq image-load-path
97 (list (file-name-as-directory (expand-file-name "images" data-directory))
98 'data-directory 'load-path)))
99
5248a565 100
20c65d08 101(defun image-load-path-for-library (library image &optional path no-error)
ae77c7ff 102 "Return a suitable search path for images used by LIBRARY.
7c565097 103
40db64d2 104It searches for IMAGE in `image-load-path' (excluding
c0696e1b
BW
105\"`data-directory'/images\") and `load-path', followed by a path
106suitable for LIBRARY, which includes \"../../etc/images\" and
107\"../etc/images\" relative to the library file itself, and then
108in \"`data-directory'/images\".
7c565097 109
5248a565
BW
110Then this function returns a list of directories which contains
111first the directory in which IMAGE was found, followed by the
112value of `load-path'. If PATH is given, it is used instead of
113`load-path'.
20c65d08 114
5248a565
BW
115If NO-ERROR is non-nil and a suitable path can't be found, don't
116signal an error. Instead, return a list of directories as before,
117except that nil appears in place of the image directory.
7c565097
BW
118
119Here is an example that uses a common idiom to provide
120compatibility with versions of Emacs that lack the variable
121`image-load-path':
122
9f036d33
BW
123 ;; Shush compiler.
124 (defvar image-load-path)
5248a565
BW
125
126 (let* ((load-path (image-load-path-for-library \"mh-e\" \"mh-logo.xpm\"))
9f036d33
BW
127 (image-load-path (cons (car load-path)
128 (when (boundp 'image-load-path)
129 image-load-path))))
5248a565 130 (mh-tool-bar-folder-buttons-init))"
7c565097
BW
131 (unless library (error "No library specified"))
132 (unless image (error "No image specified"))
c0696e1b
BW
133 (let (image-directory image-directory-load-path)
134 ;; Check for images in image-load-path or load-path.
135 (let ((img image)
136 (dir (or
137 ;; Images in image-load-path.
138 (image-search-load-path image)
139 ;; Images in load-path.
140 (locate-library image)))
141 parent)
142 ;; Since the image might be in a nested directory (for
143 ;; example, mail/attach.pbm), adjust `image-directory'
144 ;; accordingly.
145 (when dir
146 (setq dir (file-name-directory dir))
147 (while (setq parent (file-name-directory img))
148 (setq img (directory-file-name parent)
149 dir (expand-file-name "../" dir))))
150 (setq image-directory-load-path dir))
151
152 ;; If `image-directory-load-path' isn't Emacs' image directory,
153 ;; it's probably a user preference, so use it. Then use a
154 ;; relative setting if possible; otherwise, use
155 ;; `image-directory-load-path'.
7c565097 156 (cond
c0696e1b
BW
157 ;; User-modified image-load-path?
158 ((and image-directory-load-path
159 (not (equal image-directory-load-path
160 (file-name-as-directory
161 (expand-file-name "images" data-directory)))))
162 (setq image-directory image-directory-load-path))
7c565097
BW
163 ;; Try relative setting.
164 ((let (library-name d1ei d2ei)
165 ;; First, find library in the load-path.
166 (setq library-name (locate-library library))
167 (if (not library-name)
168 (error "Cannot find library %s in load-path" library))
169 ;; And then set image-directory relative to that.
170 (setq
171 ;; Go down 2 levels.
c0696e1b
BW
172 d2ei (file-name-as-directory
173 (expand-file-name
174 (concat (file-name-directory library-name) "../../etc/images")))
7c565097 175 ;; Go down 1 level.
c0696e1b
BW
176 d1ei (file-name-as-directory
177 (expand-file-name
178 (concat (file-name-directory library-name) "../etc/images"))))
7c565097
BW
179 (setq image-directory
180 ;; Set it to nil if image is not found.
181 (cond ((file-exists-p (expand-file-name image d2ei)) d2ei)
182 ((file-exists-p (expand-file-name image d1ei)) d1ei)))))
c0696e1b
BW
183 ;; Use Emacs' image directory.
184 (image-directory-load-path
185 (setq image-directory image-directory-load-path))
20c65d08 186 (no-error
20c65d08 187 (message "Could not find image %s for library %s" image library))
7c565097
BW
188 (t
189 (error "Could not find image %s for library %s" image library)))
190
5248a565
BW
191 ;; Return an augmented `path' or `load-path'.
192 (nconc (list image-directory)
193 (delete image-directory (copy-sequence (or path load-path))))))
194
7c565097 195
8a8ef149 196(defun image-jpeg-p (data)
9b78a6a3
RS
197 "Value is non-nil if DATA, a string, consists of JFIF image data.
198We accept the tag Exif because that is the same format."
8a8ef149
GM
199 (when (string-match "\\`\xff\xd8" data)
200 (catch 'jfif
201 (let ((len (length data)) (i 2))
202 (while (< i len)
203 (when (/= (aref data i) #xff)
204 (throw 'jfif nil))
205 (setq i (1+ i))
206 (when (>= (+ i 2) len)
207 (throw 'jfif nil))
208 (let ((nbytes (+ (lsh (aref data (+ i 1)) 8)
4a9bf8a4
GM
209 (aref data (+ i 2))))
210 (code (aref data i)))
211 (when (and (>= code #xe0) (<= code #xef))
8a8ef149 212 ;; APP0 LEN1 LEN2 "JFIF\0"
71296446 213 (throw 'jfif
32b3c766
JPW
214 (string-match "JFIF\\|Exif"
215 (substring data i (min (+ i nbytes) len)))))
3bdbead3 216 (setq i (+ i 1 nbytes))))))))
7840ced1
GM
217
218
219;;;###autoload
162dec01
GM
220(defun image-type-from-data (data)
221 "Determine the image type from image data DATA.
222Value is a symbol specifying the image type or nil if type cannot
7840ced1 223be determined."
4fde92ef 224 (let ((types image-type-header-regexps)
7840ced1 225 type)
4fde92ef 226 (while types
7840ced1 227 (let ((regexp (car (car types)))
6642c904 228 (image-type (cdr (car types))))
4fde92ef
KS
229 (if (or (and (symbolp image-type)
230 (string-match regexp data))
231 (and (consp image-type)
232 (funcall (car image-type) data)
233 (setq image-type (cdr image-type))))
234 (setq type image-type
235 types nil)
236 (setq types (cdr types)))))
237 type))
238
239
240;;;###autoload
6642c904 241(defun image-type-from-buffer ()
4fde92ef 242 "Determine the image type from data in the current buffer.
6642c904
JB
243Value is a symbol specifying the image type or nil if type cannot
244be determined."
4fde92ef
KS
245 (let ((types image-type-header-regexps)
246 type
247 (opoint (point)))
248 (goto-char (point-min))
249 (while types
250 (let ((regexp (car (car types)))
6642c904 251 (image-type (cdr (car types)))
4fde92ef
KS
252 data)
253 (if (or (and (symbolp image-type)
254 (looking-at regexp))
255 (and (consp image-type)
256 (funcall (car image-type)
257 (or data
258 (setq data
259 (buffer-substring
260 (point-min)
261 (min (point-max)
262 (+ (point-min) 256))))))
263 (setq image-type (cdr image-type))))
6642c904 264 (setq type image-type
4fde92ef
KS
265 types nil)
266 (setq types (cdr types)))))
267 (goto-char opoint)
7840ced1
GM
268 type))
269
270
162dec01
GM
271;;;###autoload
272(defun image-type-from-file-header (file)
273 "Determine the type of image file FILE from its first few bytes.
274Value is a symbol specifying the image type, or nil if type cannot
275be determined."
4fde92ef
KS
276 (unless (or (file-readable-p file)
277 (file-name-absolute-p file))
278 (setq file (image-search-load-path file)))
279 (and file
280 (file-readable-p file)
281 (with-temp-buffer
282 (set-buffer-multibyte nil)
283 (insert-file-contents-literally file nil 0 256)
6642c904 284 (image-type-from-buffer))))
4fde92ef
KS
285
286
287;;;###autoload
288(defun image-type-from-file-name (file)
289 "Determine the type of image file FILE from its name.
290Value is a symbol specifying the image type, or nil if type cannot
291be determined."
292 (let ((types image-type-file-name-regexps)
293 type)
294 (while types
295 (if (string-match (car (car types)) file)
296 (setq type (cdr (car types))
297 types nil)
298 (setq types (cdr types))))
299 type))
162dec01
GM
300
301
7840ced1 302;;;###autoload
e7968373
KS
303(defun image-type (file-or-data &optional type data-p)
304 "Determine and return image type.
162dec01 305FILE-OR-DATA is an image file name or image data.
7840ced1 306Optional TYPE is a symbol describing the image type. If TYPE is omitted
162dec01
GM
307or nil, try to determine the image type from its first few bytes
308of image data. If that doesn't work, and FILE-OR-DATA is a file name,
9ea8de1b 309use its file extension as image type.
e7968373 310Optional DATA-P non-nil means FILE-OR-DATA is a string containing image data."
f64ae86c
GM
311 (when (and (not data-p) (not (stringp file-or-data)))
312 (error "Invalid image file name `%s'" file-or-data))
162dec01
GM
313 (cond ((null data-p)
314 ;; FILE-OR-DATA is a file name.
315 (unless (or type
316 (setq type (image-type-from-file-header file-or-data)))
317 (let ((extension (file-name-extension file-or-data)))
318 (unless extension
319 (error "Cannot determine image type"))
320 (setq type (intern extension)))))
321 (t
322 ;; FILE-OR-DATA contains image data.
323 (unless type
324 (setq type (image-type-from-data file-or-data)))))
325 (unless type
326 (error "Cannot determine image type"))
7840ced1 327 (unless (symbolp type)
162dec01 328 (error "Invalid image type `%s'" type))
e7968373
KS
329 type)
330
6642c904 331
e7968373
KS
332;;;###autoload
333(defun image-type-available-p (type)
334 "Return non-nil if image type TYPE is available.
335Image types are symbols like `xbm' or `jpeg'."
336 (and (fboundp 'init-image-library)
337 (init-image-library type image-library-alist)))
338
339
6642c904
JB
340;;;###autoload
341(defun image-type-auto-detected-p ()
342 "Return t iff the current buffer contains an auto-detectable image.
343Whether image types are auto-detectable or not depends on the setting
344of the variable `image-type-auto-detectable'.
345
346This function is intended to be used from `magic-mode-alist' (which see)."
347 (let* ((type (image-type-from-buffer))
348 (auto (and type (cdr (assq type image-type-auto-detectable)))))
349 (and auto
350 (or (eq auto t)
351 (image-type-available-p type)))))
352
353
e7968373
KS
354;;;###autoload
355(defun create-image (file-or-data &optional type data-p &rest props)
356 "Create an image.
357FILE-OR-DATA is an image file name or image data.
358Optional TYPE is a symbol describing the image type. If TYPE is omitted
359or nil, try to determine the image type from its first few bytes
360of image data. If that doesn't work, and FILE-OR-DATA is a file name,
361use its file extension as image type.
362Optional DATA-P non-nil means FILE-OR-DATA is a string containing image data.
363Optional PROPS are additional image attributes to assign to the image,
364like, e.g. `:mask MASK'.
365Value is the image created, or nil if images of type TYPE are not supported.
366
367Images should not be larger than specified by `max-image-size'."
368 (setq type (image-type file-or-data type data-p))
7840ced1 369 (when (image-type-available-p type)
162dec01
GM
370 (append (list 'image :type type (if data-p :data :file) file-or-data)
371 props)))
7840ced1
GM
372
373
374;;;###autoload
cedbd8d0 375(defun put-image (image pos &optional string area)
1571b5ff 376 "Put image IMAGE in front of POS in the current buffer.
7840ced1 377IMAGE must be an image created with `create-image' or `defimage'.
46655c94
GM
378IMAGE is displayed by putting an overlay into the current buffer with a
379`before-string' STRING that has a `display' property whose value is the
cedbd8d0 380image. STRING is defaulted if you omit it.
7840ced1 381POS may be an integer or marker.
7840ced1
GM
382AREA is where to display the image. AREA nil or omitted means
383display it in the text area, a value of `left-margin' means
384display it in the left marginal area, a value of `right-margin'
46655c94 385means display it in the right marginal area."
0ad550ba 386 (unless string (setq string "x"))
1571b5ff 387 (let ((buffer (current-buffer)))
cedbd8d0 388 (unless (eq (car-safe image) 'image)
1571b5ff
GM
389 (error "Not an image: %s" image))
390 (unless (or (null area) (memq area '(left-margin right-margin)))
391 (error "Invalid area %s" area))
46655c94 392 (setq string (copy-sequence string))
1571b5ff 393 (let ((overlay (make-overlay pos pos buffer))
46655c94
GM
394 (prop (if (null area) image (list (list 'margin area) image))))
395 (put-text-property 0 (length string) 'display prop string)
1571b5ff
GM
396 (overlay-put overlay 'put-image t)
397 (overlay-put overlay 'before-string string))))
7840ced1
GM
398
399
400;;;###autoload
5af275e0 401(defun insert-image (image &optional string area slice)
7840ced1 402 "Insert IMAGE into current buffer at point.
46655c94 403IMAGE is displayed by inserting STRING into the current buffer
cedbd8d0
DL
404with a `display' property whose value is the image. STRING is
405defaulted if you omit it.
7840ced1
GM
406AREA is where to display the image. AREA nil or omitted means
407display it in the text area, a value of `left-margin' means
408display it in the left marginal area, a value of `right-margin'
5af275e0
KS
409means display it in the right marginal area.
410SLICE specifies slice of IMAGE to insert. SLICE nil or omitted
411means insert whole image. SLICE is a list (X Y WIDTH HEIGHT)
412specifying the X and Y positions and WIDTH and HEIGHT of image area
413to insert. A float value 0.0 - 1.0 means relative to the width or
414height of the image; integer values are taken as pixel values."
0ad550ba
DL
415 ;; Use a space as least likely to cause trouble when it's a hidden
416 ;; character in the buffer.
417 (unless string (setq string " "))
cedbd8d0 418 (unless (eq (car-safe image) 'image)
7840ced1
GM
419 (error "Not an image: %s" image))
420 (unless (or (null area) (memq area '(left-margin right-margin)))
421 (error "Invalid area %s" area))
0dc91c57
DL
422 (if area
423 (setq image (list (list 'margin area) image))
424 ;; Cons up a new spec equal but not eq to `image' so that
425 ;; inserting it twice in a row (adjacently) displays two copies of
426 ;; the image. Don't try to avoid this by looking at the display
427 ;; properties on either side so that we DTRT more often with
428 ;; cut-and-paste. (Yanking killed image text next to another copy
429 ;; of it loses anyway.)
430 (setq image (cons 'image (cdr image))))
46655c94
GM
431 (let ((start (point)))
432 (insert string)
433 (add-text-properties start (point)
5af275e0
KS
434 `(display ,(if slice
435 (list (cons 'slice slice) image)
436 image) rear-nonsticky (display)))))
437
438
f22c36d3 439;;;###autoload
5af275e0 440(defun insert-sliced-image (image &optional string area rows cols)
b48bc937
KS
441 "Insert IMAGE into current buffer at point.
442IMAGE is displayed by inserting STRING into the current buffer
443with a `display' property whose value is the image. STRING is
444defaulted if you omit it.
445AREA is where to display the image. AREA nil or omitted means
446display it in the text area, a value of `left-margin' means
447display it in the left marginal area, a value of `right-margin'
448means display it in the right marginal area.
449The image is automatically split into ROW x COLS slices."
5af275e0
KS
450 (unless string (setq string " "))
451 (unless (eq (car-safe image) 'image)
452 (error "Not an image: %s" image))
453 (unless (or (null area) (memq area '(left-margin right-margin)))
454 (error "Invalid area %s" area))
455 (if area
456 (setq image (list (list 'margin area) image))
457 ;; Cons up a new spec equal but not eq to `image' so that
458 ;; inserting it twice in a row (adjacently) displays two copies of
459 ;; the image. Don't try to avoid this by looking at the display
460 ;; properties on either side so that we DTRT more often with
461 ;; cut-and-paste. (Yanking killed image text next to another copy
462 ;; of it loses anyway.)
463 (setq image (cons 'image (cdr image))))
464 (let ((x 0.0) (dx (/ 1.0001 (or cols 1)))
465 (y 0.0) (dy (/ 1.0001 (or rows 1))))
466 (while (< y 1.0)
467 (while (< x 1.0)
468 (let ((start (point)))
469 (insert string)
470 (add-text-properties start (point)
471 `(display ,(list (list 'slice x y dx dy) image)
472 rear-nonsticky (display)))
473 (setq x (+ x dx))))
474 (setq x 0.0
475 y (+ y dy))
82dc617b 476 (insert (propertize "\n" 'line-height t)))))
5af275e0 477
10e2102e 478
7840ced1
GM
479
480;;;###autoload
481(defun remove-images (start end &optional buffer)
482 "Remove images between START and END in BUFFER.
483Remove only images that were put in BUFFER with calls to `put-image'.
484BUFFER nil or omitted means use the current buffer."
485 (unless buffer
486 (setq buffer (current-buffer)))
487 (let ((overlays (overlays-in start end)))
488 (while overlays
489 (let ((overlay (car overlays)))
490 (when (overlay-get overlay 'put-image)
0c898dd9
DL
491 (delete-overlay overlay)))
492 (setq overlays (cdr overlays)))))
7840ced1 493
4fde92ef
KS
494(defun image-search-load-path (file &optional path)
495 (unless path
496 (setq path image-load-path))
497 (let (element found filename)
5fc5ac38 498 (while (and (not found) (consp path))
93a75651 499 (setq element (car path))
5fc5ac38 500 (cond
93a75651 501 ((stringp element)
5fc5ac38
CY
502 (setq found
503 (file-readable-p
4fde92ef 504 (setq filename (expand-file-name file element)))))
93a75651
CY
505 ((and (symbolp element) (boundp element))
506 (setq element (symbol-value element))
507 (cond
508 ((stringp element)
509 (setq found
510 (file-readable-p
4fde92ef 511 (setq filename (expand-file-name file element)))))
93a75651 512 ((consp element)
4fde92ef 513 (if (setq filename (image-search-load-path file element))
93a75651 514 (setq found t))))))
5fc5ac38 515 (setq path (cdr path)))
4fde92ef 516 (if found filename)))
7840ced1
GM
517
518;;;###autoload
349c034d
GM
519(defun find-image (specs)
520 "Find an image, choosing one of a list of image specifications.
7840ced1 521
cedbd8d0 522SPECS is a list of image specifications.
7840ced1
GM
523
524Each image specification in SPECS is a property list. The contents of
525a specification are image type dependent. All specifications must at
bc283707
WP
526least contain the properties `:type TYPE' and either `:file FILE' or
527`:data DATA', where TYPE is a symbol specifying the image type,
528e.g. `xbm', FILE is the file to load the image from, and DATA is a
cedbd8d0
DL
529string containing the actual image data. The specification whose TYPE
530is supported, and FILE exists, is used to construct the image
531specification to be returned. Return nil if no specification is
532satisfied.
533
8646a62e
CY
534The image is looked for in `image-load-path'.
535
536Image files should not be larger than specified by `max-image-size'."
7840ced1
GM
537 (let (image)
538 (while (and specs (null image))
539 (let* ((spec (car specs))
540 (type (plist-get spec :type))
162dec01 541 (data (plist-get spec :data))
7f228379
GM
542 (file (plist-get spec :file))
543 found)
162dec01
GM
544 (when (image-type-available-p type)
545 (cond ((stringp file)
4fde92ef 546 (if (setq found (image-search-load-path file))
5fc5ac38
CY
547 (setq image
548 (cons 'image (plist-put (copy-sequence spec)
549 :file found)))))
f64ae86c 550 ((not (null data))
162dec01
GM
551 (setq image (cons 'image spec)))))
552 (setq specs (cdr specs))))
349c034d
GM
553 image))
554
555
556;;;###autoload
557(defmacro defimage (symbol specs &optional doc)
558 "Define SYMBOL as an image.
559
560SPECS is a list of image specifications. DOC is an optional
561documentation string.
562
563Each image specification in SPECS is a property list. The contents of
564a specification are image type dependent. All specifications must at
565least contain the properties `:type TYPE' and either `:file FILE' or
566`:data DATA', where TYPE is a symbol specifying the image type,
567e.g. `xbm', FILE is the file to load the image from, and DATA is a
568string containing the actual image data. The first image
569specification whose TYPE is supported, and FILE exists, is used to
570define SYMBOL.
571
572Example:
573
574 (defimage test-image ((:type xpm :file \"~/test1.xpm\")
575 (:type xbm :file \"~/test1.xbm\")))"
fd8e7a80 576 (declare (doc-string 3))
349c034d 577 `(defvar ,symbol (find-image ',specs) ,doc))
7840ced1
GM
578
579
580(provide 'image)
581
fd8e7a80 582;; arch-tag: 8e76a07b-eb48-4f3e-a7a0-1a7ba9f096b3
e43367a0 583;;; image.el ends here