(put-image): Default STRING to a space.
[bpt/emacs.git] / lisp / image.el
CommitLineData
7840ced1
GM
1;;; image.el --- image API
2
7f228379 3;; Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
04799cf5 4;; Keywords: multimedia
7840ced1
GM
5
6;; This file is part of GNU Emacs.
7
8;; GNU Emacs is free software; you can redistribute it and/or modify
9;; it under the terms of the GNU General Public License as published by
10;; the Free Software Foundation; either version 2, or (at your option)
11;; any later version.
12
13;; GNU Emacs is distributed in the hope that it will be useful,
14;; but WITHOUT ANY WARRANTY; without even the implied warranty of
15;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;; GNU General Public License for more details.
17
18;; You should have received a copy of the GNU General Public License
19;; along with GNU Emacs; see the file COPYING. If not, write to the
20;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21;; Boston, MA 02111-1307, USA.
22
23;;; Commentary:
24
25;;; Code:
26
27(defconst image-type-regexps
28 '(("^/\\*.*XPM.\\*/" . xpm)
29 ("^P[1-6]" . pbm)
30 ("^GIF8" . gif)
31 ("JFIF" . jpeg)
32 ("^\211PNG\r\n" . png)
33 ("^#define" . xbm)
34 ("^\\(MM\0\\*\\)\\|\\(II\\*\0\\)" . tiff)
35 ("^%!PS" . ghostscript))
36 "Alist of (REGEXP . IMAGE-TYPE) pairs used to auto-detect image types.
37When the first bytes of an image file match REGEXP, it is assumed to
38be of image type IMAGE-TYPE.")
39
40
41;;;###autoload
162dec01
GM
42(defun image-type-from-data (data)
43 "Determine the image type from image data DATA.
44Value is a symbol specifying the image type or nil if type cannot
7840ced1 45be determined."
162dec01 46 (let ((types image-type-regexps)
7840ced1
GM
47 type)
48 (while (and types (null type))
49 (let ((regexp (car (car types)))
50 (image-type (cdr (car types))))
162dec01 51 (when (string-match regexp data)
7840ced1
GM
52 (setq type image-type))
53 (setq types (cdr types))))
54 type))
55
56
162dec01
GM
57;;;###autoload
58(defun image-type-from-file-header (file)
59 "Determine the type of image file FILE from its first few bytes.
60Value is a symbol specifying the image type, or nil if type cannot
61be determined."
62 (unless (file-name-directory file)
63 (setq file (expand-file-name file data-directory)))
64 (setq file (expand-file-name file))
65 (let ((header (with-temp-buffer
66 (insert-file-contents-literally file nil 0 256)
67 (buffer-string))))
68 (image-type-from-data header)))
69
70
7840ced1
GM
71;;;###autoload
72(defun image-type-available-p (type)
73 "Value is non-nil if image type TYPE is available.
74Image types are symbols like `xbm' or `jpeg'."
24978190 75 (and (boundp 'image-types) (not (null (memq type image-types)))))
7840ced1
GM
76
77
78;;;###autoload
162dec01
GM
79(defun create-image (file-or-data &optional type data-p &rest props)
80 "Create an image.
81FILE-OR-DATA is an image file name or image data.
7840ced1 82Optional TYPE is a symbol describing the image type. If TYPE is omitted
162dec01
GM
83or nil, try to determine the image type from its first few bytes
84of image data. If that doesn't work, and FILE-OR-DATA is a file name,
85use its file extension.as image type.
86Optional DATA-P non-nil means FILE-OR-DATA is a string containing image data.
7840ced1
GM
87Optional PROPS are additional image attributes to assign to the image,
88like, e.g. `:heuristic-mask t'.
89Value is the image created, or nil if images of type TYPE are not supported."
f64ae86c
GM
90 (when (and (not data-p) (not (stringp file-or-data)))
91 (error "Invalid image file name `%s'" file-or-data))
162dec01
GM
92 (cond ((null data-p)
93 ;; FILE-OR-DATA is a file name.
94 (unless (or type
95 (setq type (image-type-from-file-header file-or-data)))
96 (let ((extension (file-name-extension file-or-data)))
97 (unless extension
98 (error "Cannot determine image type"))
99 (setq type (intern extension)))))
100 (t
101 ;; FILE-OR-DATA contains image data.
102 (unless type
103 (setq type (image-type-from-data file-or-data)))))
104 (unless type
105 (error "Cannot determine image type"))
7840ced1 106 (unless (symbolp type)
162dec01 107 (error "Invalid image type `%s'" type))
7840ced1 108 (when (image-type-available-p type)
162dec01
GM
109 (append (list 'image :type type (if data-p :data :file) file-or-data)
110 props)))
7840ced1
GM
111
112
113;;;###autoload
cedbd8d0 114(defun put-image (image pos &optional string area)
1571b5ff 115 "Put image IMAGE in front of POS in the current buffer.
7840ced1 116IMAGE must be an image created with `create-image' or `defimage'.
46655c94
GM
117IMAGE is displayed by putting an overlay into the current buffer with a
118`before-string' STRING that has a `display' property whose value is the
cedbd8d0 119image. STRING is defaulted if you omit it.
7840ced1 120POS may be an integer or marker.
7840ced1
GM
121AREA is where to display the image. AREA nil or omitted means
122display it in the text area, a value of `left-margin' means
123display it in the left marginal area, a value of `right-margin'
46655c94 124means display it in the right marginal area."
f290ca08
DL
125 ;; Use a space as least likely to cause trouble when it's a hidden
126 ;; character in the buffer.
127 (unless string (setq string " "))
1571b5ff 128 (let ((buffer (current-buffer)))
cedbd8d0 129 (unless (eq (car-safe image) 'image)
1571b5ff
GM
130 (error "Not an image: %s" image))
131 (unless (or (null area) (memq area '(left-margin right-margin)))
132 (error "Invalid area %s" area))
46655c94 133 (setq string (copy-sequence string))
1571b5ff 134 (let ((overlay (make-overlay pos pos buffer))
46655c94
GM
135 (prop (if (null area) image (list (list 'margin area) image))))
136 (put-text-property 0 (length string) 'display prop string)
1571b5ff
GM
137 (overlay-put overlay 'put-image t)
138 (overlay-put overlay 'before-string string))))
7840ced1
GM
139
140
141;;;###autoload
cedbd8d0 142(defun insert-image (image &optional string area)
7840ced1 143 "Insert IMAGE into current buffer at point.
46655c94 144IMAGE is displayed by inserting STRING into the current buffer
cedbd8d0
DL
145with a `display' property whose value is the image. STRING is
146defaulted if you omit it.
7840ced1
GM
147AREA is where to display the image. AREA nil or omitted means
148display it in the text area, a value of `left-margin' means
149display it in the left marginal area, a value of `right-margin'
46655c94 150means display it in the right marginal area."
cedbd8d0
DL
151 (unless string (setq string "x"))
152 (unless (eq (car-safe image) 'image)
7840ced1
GM
153 (error "Not an image: %s" image))
154 (unless (or (null area) (memq area '(left-margin right-margin)))
155 (error "Invalid area %s" area))
0dc91c57
DL
156 (if area
157 (setq image (list (list 'margin area) image))
158 ;; Cons up a new spec equal but not eq to `image' so that
159 ;; inserting it twice in a row (adjacently) displays two copies of
160 ;; the image. Don't try to avoid this by looking at the display
161 ;; properties on either side so that we DTRT more often with
162 ;; cut-and-paste. (Yanking killed image text next to another copy
163 ;; of it loses anyway.)
164 (setq image (cons 'image (cdr image))))
46655c94
GM
165 (let ((start (point)))
166 (insert string)
167 (add-text-properties start (point)
0dc91c57
DL
168 (list 'display image
169 ;; `image' has the right properties to
170 ;; mark an intangible field.
171 'intangible image
46655c94 172 'rear-nonsticky (list 'display)))))
10e2102e 173
7840ced1
GM
174
175;;;###autoload
176(defun remove-images (start end &optional buffer)
177 "Remove images between START and END in BUFFER.
178Remove only images that were put in BUFFER with calls to `put-image'.
179BUFFER nil or omitted means use the current buffer."
180 (unless buffer
181 (setq buffer (current-buffer)))
182 (let ((overlays (overlays-in start end)))
183 (while overlays
184 (let ((overlay (car overlays)))
185 (when (overlay-get overlay 'put-image)
0c898dd9
DL
186 (delete-overlay overlay)))
187 (setq overlays (cdr overlays)))))
7840ced1
GM
188
189
190;;;###autoload
349c034d
GM
191(defun find-image (specs)
192 "Find an image, choosing one of a list of image specifications.
7840ced1 193
cedbd8d0 194SPECS is a list of image specifications.
7840ced1
GM
195
196Each image specification in SPECS is a property list. The contents of
197a specification are image type dependent. All specifications must at
bc283707
WP
198least contain the properties `:type TYPE' and either `:file FILE' or
199`:data DATA', where TYPE is a symbol specifying the image type,
200e.g. `xbm', FILE is the file to load the image from, and DATA is a
cedbd8d0
DL
201string containing the actual image data. The specification whose TYPE
202is supported, and FILE exists, is used to construct the image
203specification to be returned. Return nil if no specification is
204satisfied.
205
206The image is looked for first on `load-path' and then in `data-directory'."
7840ced1
GM
207 (let (image)
208 (while (and specs (null image))
209 (let* ((spec (car specs))
210 (type (plist-get spec :type))
162dec01 211 (data (plist-get spec :data))
7f228379
GM
212 (file (plist-get spec :file))
213 found)
162dec01
GM
214 (when (image-type-available-p type)
215 (cond ((stringp file)
7f228379
GM
216 (let ((path load-path))
217 (while (and (not found) path)
218 (let ((try-file (expand-file-name file (car path))))
219 (when (file-readable-p try-file)
220 (setq found try-file)))
221 (setq path (cdr path)))
222 (unless found
cedbd8d0
DL
223 (let ((try-file (expand-file-name file data-directory)))
224 (if (file-readable-p try-file)
225 (setq found try-file))))
226 (if found
227 (setq image
228 (cons 'image (plist-put spec :file found))))))
f64ae86c 229 ((not (null data))
162dec01
GM
230 (setq image (cons 'image spec)))))
231 (setq specs (cdr specs))))
349c034d
GM
232 image))
233
234
235;;;###autoload
236(defmacro defimage (symbol specs &optional doc)
237 "Define SYMBOL as an image.
238
239SPECS is a list of image specifications. DOC is an optional
240documentation string.
241
242Each image specification in SPECS is a property list. The contents of
243a specification are image type dependent. All specifications must at
244least contain the properties `:type TYPE' and either `:file FILE' or
245`:data DATA', where TYPE is a symbol specifying the image type,
246e.g. `xbm', FILE is the file to load the image from, and DATA is a
247string containing the actual image data. The first image
248specification whose TYPE is supported, and FILE exists, is used to
249define SYMBOL.
250
251Example:
252
253 (defimage test-image ((:type xpm :file \"~/test1.xpm\")
254 (:type xbm :file \"~/test1.xbm\")))"
255 `(defvar ,symbol (find-image ',specs) ,doc))
7840ced1
GM
256
257
258(provide 'image)
259
e43367a0 260;;; image.el ends here