]> code.delx.au - gnu-emacs/blob - lisp/image.el
(fortran-comment-line-start): Renamed from comment-line-start.
[gnu-emacs] / lisp / image.el
1 ;;; image.el --- image API
2
3 ;; Copyright (C) 1998, 1999 Free Software Foundation, Inc.
4 ;; Keywords: multimedia
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.
37 When the first bytes of an image file match REGEXP, it is assumed to
38 be of image type IMAGE-TYPE.")
39
40
41 ;;;###autoload
42 (defun image-type-from-file-header (file)
43 "Determine the type of image file FILE from its first few bytes.
44 Value is a symbol specifying the image type, or nil if type cannot
45 be determined."
46 (unless (file-name-directory file)
47 (setq file (concat data-directory file)))
48 (setq file (expand-file-name file))
49 (let ((header (with-temp-buffer
50 (insert-file-contents-literally file nil 0 256)
51 (buffer-string)))
52 (types image-type-regexps)
53 type)
54 (while (and types (null type))
55 (let ((regexp (car (car types)))
56 (image-type (cdr (car types))))
57 (when (string-match regexp header)
58 (setq type image-type))
59 (setq types (cdr types))))
60 type))
61
62
63 ;;;###autoload
64 (defun image-type-available-p (type)
65 "Value is non-nil if image type TYPE is available.
66 Image types are symbols like `xbm' or `jpeg'."
67 (not (null (memq type image-types))))
68
69
70 ;;;###autoload
71 (defun create-image (file &optional type &rest props)
72 "Create an image which will be loaded from FILE.
73 Optional TYPE is a symbol describing the image type. If TYPE is omitted
74 or nil, try to determine the image file type from its first few bytes.
75 If that doesn't work, use FILE's extension.as image type.
76 Optional PROPS are additional image attributes to assign to the image,
77 like, e.g. `:heuristic-mask t'.
78 Value is the image created, or nil if images of type TYPE are not supported."
79 (unless (stringp file)
80 (error "Invalid image file name %s" file))
81 (unless (or type
82 (setq type (image-type-from-file-header file)))
83 (let ((extension (file-name-extension file)))
84 (unless extension
85 (error "Cannot determine image type"))
86 (setq type (intern extension))))
87 (unless (symbolp type)
88 (error "Invalid image type %s" type))
89 (when (image-type-available-p type)
90 (append (list 'image :type type :file file) props)))
91
92
93 ;;;###autoload
94 (defun put-image (image pos string &optional area)
95 "Put image IMAGE in front of POS in the current buffer.
96 IMAGE must be an image created with `create-image' or `defimage'.
97 IMAGE is displayed by putting an overlay into the current buffer with a
98 `before-string' STRING that has a `display' property whose value is the
99 image.
100 POS may be an integer or marker.
101 AREA is where to display the image. AREA nil or omitted means
102 display it in the text area, a value of `left-margin' means
103 display it in the left marginal area, a value of `right-margin'
104 means display it in the right marginal area."
105 (let ((buffer (current-buffer)))
106 (unless (eq (car image) 'image)
107 (error "Not an image: %s" image))
108 (unless (or (null area) (memq area '(left-margin right-margin)))
109 (error "Invalid area %s" area))
110 (setq string (copy-sequence string))
111 (let ((overlay (make-overlay pos pos buffer))
112 (prop (if (null area) image (list (list 'margin area) image))))
113 (put-text-property 0 (length string) 'display prop string)
114 (overlay-put overlay 'put-image t)
115 (overlay-put overlay 'before-string string))))
116
117
118 ;;;###autoload
119 (defun insert-image (image string &optional area)
120 "Insert IMAGE into current buffer at point.
121 IMAGE is displayed by inserting STRING into the current buffer
122 with a `display' property whose value is the image.
123 AREA is where to display the image. AREA nil or omitted means
124 display it in the text area, a value of `left-margin' means
125 display it in the left marginal area, a value of `right-margin'
126 means display it in the right marginal area."
127 (unless (eq (car image) 'image)
128 (error "Not an image: %s" image))
129 (unless (or (null area) (memq area '(left-margin right-margin)))
130 (error "Invalid area %s" area))
131 (when area
132 (setq image (list (list 'margin area) image)))
133 (let ((start (point)))
134 (insert string)
135 ;; Copy `image' so that inserting it twice in a row (adjacently)
136 ;; displays two copies of the image.
137 (add-text-properties start (point)
138 (list 'display (copy-sequence image)
139 'intangible (list t) ; something unique
140 'rear-nonsticky (list 'display)))))
141
142
143 ;;;###autoload
144 (defun remove-images (start end &optional buffer)
145 "Remove images between START and END in BUFFER.
146 Remove only images that were put in BUFFER with calls to `put-image'.
147 BUFFER nil or omitted means use the current buffer."
148 (unless buffer
149 (setq buffer (current-buffer)))
150 (let ((overlays (overlays-in start end)))
151 (while overlays
152 (let ((overlay (car overlays)))
153 (when (overlay-get overlay 'put-image)
154 (delete-overlay overlay)))
155 (setq overlays (cdr overlays)))))
156
157
158 ;;;###autoload
159 (defmacro defimage (symbol specs &optional doc)
160 "Define SYMBOL as an image.
161
162 SPECS is a list of image specifications. DOC is an optional
163 documentation string.
164
165 Each image specification in SPECS is a property list. The contents of
166 a specification are image type dependent. All specifications must at
167 least contain the properties `:type TYPE' and `:file FILE', where TYPE
168 is a symbol specifying the image type, e.g. `xbm', and FILE is the
169 file to load the image from. The first image specification whose TYPE
170 is supported, and FILE exists, is used to define SYMBOL.
171
172 Example:
173
174 (defimage test-image ((:type xpm :file \"~/test1.xpm\")
175 (:type xbm :file \"~/test1.xbm\")))"
176 (let (image)
177 (while (and specs (null image))
178 (let* ((spec (car specs))
179 (type (plist-get spec :type))
180 (file (plist-get spec :file)))
181 (when (and (image-type-available-p type) (stringp file))
182 (setq file (expand-file-name file data-directory))
183 (when (file-readable-p file)
184 (setq image (cons 'image (plist-put spec :file file)))))
185 (setq specs (cdr specs))))
186 `(defvar ,symbol ',image ,doc)))
187
188
189 (provide 'image)
190
191 ;;; image.el ends here