1 ;;; image.el --- image API -*- lexical-binding:t -*-
3 ;; Copyright (C) 1998-2016 Free Software Foundation, Inc.
5 ;; Maintainer: emacs-devel@gnu.org
6 ;; Keywords: multimedia
9 ;; This file is part of GNU Emacs.
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 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
32 (defalias 'image-refresh
'image-flush
)
34 (defconst image-type-header-regexps
35 `(("\\`/[\t\n\r ]*\\*.*XPM.\\*/" . xpm
)
37 \\(?:\\(?:#[^\r\n]*[\r\n]\\)?[[:space:]]\\)+\
38 \\(?:\\(?:#[^\r\n]*[\r\n]\\)?[0-9]\\)+\
40 ("\\`GIF8[79]a" . gif
)
41 ("\\`\x89PNG\r\n\x1a\n" . png
)
42 ("\\`[\t\n\r ]*#define \\([a-z0-9_]+\\)_width [0-9]+\n\
43 #define \\1_height [0-9]+\n\\(\
44 #define \\1_x_hot [0-9]+\n\
45 #define \\1_y_hot [0-9]+\n\\)?\
46 static \\(unsigned \\)?char \\1_bits" . xbm
)
47 ("\\`\\(?:MM\0\\*\\|II\\*\0\\)" . tiff
)
48 ("\\`[\t\n\r ]*%!PS" . postscript
)
49 ("\\`\xff\xd8" . jpeg
) ; used to be (image-jpeg-p . jpeg)
50 (,(let* ((incomment-re "\\(?:[^-]\\|-[^-]\\)")
51 (comment-re (concat "\\(?:!--" incomment-re
"*-->[ \t\r\n]*<\\)")))
52 (concat "\\(?:<\\?xml[ \t\r\n]+[^>]*>\\)?[ \t\r\n]*<"
54 "\\(?:!DOCTYPE[ \t\r\n]+[^>]*>[ \t\r\n]*<[ \t\r\n]*" comment-re
"*\\)?"
58 "Alist of (REGEXP . IMAGE-TYPE) pairs used to auto-detect image types.
59 When the first bytes of an image file match REGEXP, it is assumed to
60 be of image type IMAGE-TYPE if IMAGE-TYPE is a symbol. If not a symbol,
61 IMAGE-TYPE must be a pair (PREDICATE . TYPE). PREDICATE is called
62 with one argument, a string containing the image data. If PREDICATE returns
63 a non-nil value, TYPE is the image's type.")
65 (defvar image-type-file-name-regexps
68 ("\\.jpe?g\\'" . jpeg
)
73 ("\\.ps\\'" . postscript
)
74 ("\\.tiff?\\'" . tiff
)
77 "Alist of (REGEXP . IMAGE-TYPE) pairs used to identify image files.
78 When the name of an image file match REGEXP, it is assumed to
79 be of image type IMAGE-TYPE.")
81 ;; We rely on `auto-mode-alist' to detect xbm and xpm files, instead
82 ;; of content autodetection. Their contents are just C code, so it is
83 ;; easy to generate false matches.
84 (defvar image-type-auto-detectable
95 "Alist of (IMAGE-TYPE . AUTODETECT) pairs used to auto-detect image files.
96 \(See `image-type-auto-detected-p').
99 - t always auto-detect.
100 - nil never auto-detect.
101 - maybe auto-detect only if the image type is available
102 (see `image-type-available-p').")
104 (defvar image-format-suffixes
105 '((image/x-icon
"ico"))
106 "An alist associating image types with file name suffixes.
107 This is used as a hint by the ImageMagick library when detecting
108 the type of image data (that does not have an associated file name).
109 Each element has the form (MIME-CONTENT-TYPE EXTENSION).
110 If `create-image' is called with a :format attribute whose value
111 equals a content-type found in this list, the ImageMagick library is
112 told that the data would have the associated suffix if saved to a file.")
114 (defcustom image-load-path
115 (list (file-name-as-directory (expand-file-name "images" data-directory
))
116 'data-directory
'load-path
)
117 "List of locations in which to search for image files.
118 If an element is a string, it defines a directory to search.
119 If an element is a variable symbol whose value is a string, that
120 value defines a directory to search.
121 If an element is a variable symbol whose value is a list, the
122 value is used as a list of directories to search.
124 Subdirectories are not automatically included in the search."
125 :type
'(repeat (choice directory variable
))
126 :initialize
#'custom-initialize-delay
)
128 (defcustom image-scaling-factor
'auto
129 "When displaying images, apply this scaling factor before displaying.
130 This is not supported for all image types, and is mostly useful
131 when you have a high-resolution monitor.
132 The value is either a floating point number (where numbers higher
133 than 1 means to increase the size and lower means to shrink the
134 size), or the symbol `auto', which will compute a scaling factor
135 based on the font pixel size."
136 :type
'(choice number
137 (const :tag
"Automatically compute" auto
))
140 ;; Map put into text properties on images.
142 (let ((map (make-sparse-keymap)))
143 (define-key map
"-" 'image-decrease-size
)
144 (define-key map
"+" 'image-increase-size
)
145 (define-key map
"r" 'image-rotate
)
146 (define-key map
"o" 'image-save
)
149 (defun image-load-path-for-library (library image
&optional path no-error
)
150 "Return a suitable search path for images used by LIBRARY.
152 It searches for IMAGE in `image-load-path' (excluding
153 \"`data-directory'/images\") and `load-path', followed by a path
154 suitable for LIBRARY, which includes \"../../etc/images\" and
155 \"../etc/images\" relative to the library file itself, and then
156 in \"`data-directory'/images\".
158 Then this function returns a list of directories which contains
159 first the directory in which IMAGE was found, followed by the
160 value of `load-path'. If PATH is given, it is used instead of
163 If NO-ERROR is non-nil and a suitable path can't be found, don't
164 signal an error. Instead, return a list of directories as before,
165 except that nil appears in place of the image directory.
167 Here is an example that uses a common idiom to provide
168 compatibility with versions of Emacs that lack the variable
172 (defvar image-load-path)
174 (let* ((load-path (image-load-path-for-library \"mh-e\" \"mh-logo.xpm\"))
175 (image-load-path (cons (car load-path)
176 (when (boundp \\='image-load-path)
178 (mh-tool-bar-folder-buttons-init))"
179 (unless library
(error "No library specified"))
180 (unless image
(error "No image specified"))
181 (let (image-directory image-directory-load-path
)
182 ;; Check for images in image-load-path or load-path.
185 ;; Images in image-load-path.
186 (image-search-load-path image
)
187 ;; Images in load-path.
188 (locate-library image
)))
190 ;; Since the image might be in a nested directory (for
191 ;; example, mail/attach.pbm), adjust `image-directory'
194 (setq dir
(file-name-directory dir
))
195 (while (setq parent
(file-name-directory img
))
196 (setq img
(directory-file-name parent
)
197 dir
(expand-file-name "../" dir
))))
198 (setq image-directory-load-path dir
))
200 ;; If `image-directory-load-path' isn't Emacs's image directory,
201 ;; it's probably a user preference, so use it. Then use a
202 ;; relative setting if possible; otherwise, use
203 ;; `image-directory-load-path'.
205 ;; User-modified image-load-path?
206 ((and image-directory-load-path
207 (not (equal image-directory-load-path
208 (file-name-as-directory
209 (expand-file-name "images" data-directory
)))))
210 (setq image-directory image-directory-load-path
))
211 ;; Try relative setting.
212 ((let (library-name d1ei d2ei
)
213 ;; First, find library in the load-path.
214 (setq library-name
(locate-library library
))
215 (if (not library-name
)
216 (error "Cannot find library %s in load-path" library
))
217 ;; And then set image-directory relative to that.
220 d2ei
(file-name-as-directory
222 (concat (file-name-directory library-name
) "../../etc/images")))
224 d1ei
(file-name-as-directory
226 (concat (file-name-directory library-name
) "../etc/images"))))
227 (setq image-directory
228 ;; Set it to nil if image is not found.
229 (cond ((file-exists-p (expand-file-name image d2ei
)) d2ei
)
230 ((file-exists-p (expand-file-name image d1ei
)) d1ei
)))))
231 ;; Use Emacs's image directory.
232 (image-directory-load-path
233 (setq image-directory image-directory-load-path
))
235 (message "Could not find image %s for library %s" image library
))
237 (error "Could not find image %s for library %s" image library
)))
239 ;; Return an augmented `path' or `load-path'.
240 (nconc (list image-directory
)
241 (delete image-directory
(copy-sequence (or path load-path
))))))
244 ;; Used to be in image-type-header-regexps, but now not used anywhere
245 ;; (since 2009-08-28).
246 (defun image-jpeg-p (data)
247 "Value is non-nil if DATA, a string, consists of JFIF image data.
248 We accept the tag Exif because that is the same format."
249 (setq data
(ignore-errors (string-to-unibyte data
)))
250 (when (and data
(string-match-p "\\`\xff\xd8" data
))
252 (let ((len (length data
)) (i 2))
254 (when (/= (aref data i
) #xff
)
257 (when (>= (+ i
2) len
)
259 (let ((nbytes (+ (lsh (aref data
(+ i
1)) 8)
260 (aref data
(+ i
2))))
261 (code (aref data i
)))
262 (when (and (>= code
#xe0
) (<= code
#xef
))
263 ;; APP0 LEN1 LEN2 "JFIF\0"
265 (string-match-p "JFIF\\|Exif"
266 (substring data i
(min (+ i nbytes
) len
)))))
267 (setq i
(+ i
1 nbytes
))))))))
271 (defun image-type-from-data (data)
272 "Determine the image type from image data DATA.
273 Value is a symbol specifying the image type or nil if type cannot
275 (let ((types image-type-header-regexps
)
278 (let ((regexp (car (car types
)))
279 (image-type (cdr (car types
))))
280 (if (or (and (symbolp image-type
)
281 (string-match-p regexp data
))
282 (and (consp image-type
)
283 (funcall (car image-type
) data
)
284 (setq image-type
(cdr image-type
))))
285 (setq type image-type
287 (setq types
(cdr types
)))))
292 (defun image-type-from-buffer ()
293 "Determine the image type from data in the current buffer.
294 Value is a symbol specifying the image type or nil if type cannot
296 (let ((types image-type-header-regexps
)
299 (goto-char (point-min))
301 (let ((regexp (car (car types
)))
302 (image-type (cdr (car types
)))
304 (if (or (and (symbolp image-type
)
305 (looking-at-p regexp
))
306 (and (consp image-type
)
307 (funcall (car image-type
)
313 (+ (point-min) 256))))))
314 (setq image-type
(cdr image-type
))))
315 (setq type image-type
317 (setq types
(cdr types
)))))
320 (boundp 'image-types
)
321 (memq type image-types
)
326 (defun image-type-from-file-header (file)
327 "Determine the type of image file FILE from its first few bytes.
328 Value is a symbol specifying the image type, or nil if type cannot
330 (unless (or (file-readable-p file
)
331 (file-name-absolute-p file
))
332 (setq file
(image-search-load-path file
)))
334 (file-readable-p file
)
336 (set-buffer-multibyte nil
)
337 (insert-file-contents-literally file nil
0 256)
338 (image-type-from-buffer))))
342 (defun image-type-from-file-name (file)
343 "Determine the type of image file FILE from its name.
344 Value is a symbol specifying the image type, or nil if type cannot
348 (dolist (elem image-type-file-name-regexps first
)
349 (when (string-match-p (car elem
) file
)
350 (if (image-type-available-p (setq type
(cdr elem
)))
352 ;; If nothing seems to be supported, return first type that matched.
353 (or first
(setq first type
))))))))
356 (defun image-type (source &optional type data-p
)
357 "Determine and return image type.
358 SOURCE is an image file name or image data.
359 Optional TYPE is a symbol describing the image type. If TYPE is omitted
360 or nil, try to determine the image type from its first few bytes
361 of image data. If that doesn't work, and SOURCE is a file name,
362 use its file extension as image type.
363 Optional DATA-P non-nil means SOURCE is a string containing image data."
364 (when (and (not data-p
) (not (stringp source
)))
365 (error "Invalid image file name `%s'" source
))
367 (setq type
(if data-p
368 (image-type-from-data source
)
369 (or (image-type-from-file-header source
)
370 (image-type-from-file-name source
))))
371 (or type
(error "Cannot determine image type")))
372 (or (memq type
(and (boundp 'image-types
) image-types
))
373 (error "Invalid image type `%s'" type
))
377 (if (fboundp 'image-metadata
) ; eg not --without-x
378 (define-obsolete-function-alias 'image-extension-data
379 'image-metadata
"24.1"))
381 (define-obsolete-variable-alias
383 'dynamic-library-alist
"24.1")
386 (defun image-type-available-p (type)
387 "Return non-nil if image type TYPE is available.
388 Image types are symbols like `xbm' or `jpeg'."
389 (and (fboundp 'init-image-library
)
390 (init-image-library type
)))
394 (defun image-type-auto-detected-p ()
395 "Return t if the current buffer contains an auto-detectable image.
396 This function is intended to be used from `magic-fallback-mode-alist'.
398 The buffer is considered to contain an auto-detectable image if
399 its beginning matches an image type in `image-type-header-regexps',
400 and that image type is present in `image-type-auto-detectable' with a
401 non-nil value. If that value is non-nil, but not t, then the image type
403 (let* ((type (image-type-from-buffer))
404 (auto (and type
(cdr (assq type image-type-auto-detectable
)))))
406 (or (eq auto t
) (image-type-available-p type
)))))
410 (defun create-image (file-or-data &optional type data-p
&rest props
)
412 FILE-OR-DATA is an image file name or image data.
413 Optional TYPE is a symbol describing the image type. If TYPE is omitted
414 or nil, try to determine the image type from its first few bytes
415 of image data. If that doesn't work, and FILE-OR-DATA is a file name,
416 use its file extension as image type.
417 Optional DATA-P non-nil means FILE-OR-DATA is a string containing image data.
418 Optional PROPS are additional image attributes to assign to the image,
419 like, e.g. `:mask MASK'.
420 Value is the image created, or nil if images of type TYPE are not supported.
422 Images should not be larger than specified by `max-image-size'.
424 Image file names that are not absolute are searched for in the
425 \"images\" sub-directory of `data-directory' and
426 `x-bitmap-file-path' (in that order)."
427 ;; It is x_find_image_file in image.c that sets the search path.
428 (setq type
(image-type file-or-data type data-p
))
429 (when (image-type-available-p type
)
430 (append (list 'image
:type type
(if data-p
:data
:file
) file-or-data
)
431 (and (not (plist-get props
:scale
))
433 (image-compute-scaling-factor image-scaling-factor
)))
436 (defun image--set-property (image property value
)
437 "Set PROPERTY in IMAGE to VALUE.
441 ;; IMAGE starts with the symbol `image', and the rest is a
442 ;; plist. Decouple plist entries where the key matches
444 (if (eq (cadr image
) property
)
445 (setcdr image
(cddr image
))
446 (setq image
(cddr image
))))
447 ;; Just enter the new value.
448 (plist-put (cdr image
) property value
))
451 (defun image-property (image property
)
452 "Return the value of PROPERTY in IMAGE.
453 Properties can be set with
455 (setf (image-property IMAGE PROPERTY) VALUE)
456 If VALUE is nil, PROPERTY is removed from IMAGE."
457 (declare (gv-setter image--set-property
))
458 (plist-get (cdr image
) property
))
460 (defun image-compute-scaling-factor (scaling)
462 ((numberp scaling
) scaling
)
464 (let ((width (/ (float (window-width nil t
)) (window-width))))
465 ;; If we assume that a typical character is 10 pixels in width,
466 ;; then we should scale all images according to how wide they
467 ;; are. But don't scale images down.
470 (/ (float width
) 10))))
472 (error "Invalid scaling factor %s" scaling
))))
475 (defun put-image (image pos
&optional string area
)
476 "Put image IMAGE in front of POS in the current buffer.
477 IMAGE must be an image created with `create-image' or `defimage'.
478 IMAGE is displayed by putting an overlay into the current buffer with a
479 `before-string' STRING that has a `display' property whose value is the
480 image. STRING is defaulted if you omit it.
481 The overlay created will have the `put-image' property set to t.
482 POS may be an integer or marker.
483 AREA is where to display the image. AREA nil or omitted means
484 display it in the text area, a value of `left-margin' means
485 display it in the left marginal area, a value of `right-margin'
486 means display it in the right marginal area."
487 (unless string
(setq string
"x"))
488 (let ((buffer (current-buffer)))
489 (unless (eq (car-safe image
) 'image
)
490 (error "Not an image: %s" image
))
491 (unless (or (null area
) (memq area
'(left-margin right-margin
)))
492 (error "Invalid area %s" area
))
493 (setq string
(copy-sequence string
))
494 (let ((overlay (make-overlay pos pos buffer
))
495 (prop (if (null area
) image
(list (list 'margin area
) image
))))
496 (put-text-property 0 (length string
) 'display prop string
)
497 (overlay-put overlay
'put-image t
)
498 (overlay-put overlay
'before-string string
)
499 (overlay-put overlay
'map image-map
)
504 (defun insert-image (image &optional string area slice
)
505 "Insert IMAGE into current buffer at point.
506 IMAGE is displayed by inserting STRING into the current buffer
507 with a `display' property whose value is the image. STRING
508 defaults to a single space if you omit it.
509 AREA is where to display the image. AREA nil or omitted means
510 display it in the text area, a value of `left-margin' means
511 display it in the left marginal area, a value of `right-margin'
512 means display it in the right marginal area.
513 SLICE specifies slice of IMAGE to insert. SLICE nil or omitted
514 means insert whole image. SLICE is a list (X Y WIDTH HEIGHT)
515 specifying the X and Y positions and WIDTH and HEIGHT of image area
516 to insert. A float value 0.0 - 1.0 means relative to the width or
517 height of the image; integer values are taken as pixel values."
518 ;; Use a space as least likely to cause trouble when it's a hidden
519 ;; character in the buffer.
520 (unless string
(setq string
" "))
521 (unless (eq (car-safe image
) 'image
)
522 (error "Not an image: %s" image
))
523 (unless (or (null area
) (memq area
'(left-margin right-margin
)))
524 (error "Invalid area %s" area
))
526 (setq image
(list (list 'margin area
) image
))
527 ;; Cons up a new spec equal but not eq to `image' so that
528 ;; inserting it twice in a row (adjacently) displays two copies of
529 ;; the image. Don't try to avoid this by looking at the display
530 ;; properties on either side so that we DTRT more often with
531 ;; cut-and-paste. (Yanking killed image text next to another copy
532 ;; of it loses anyway.)
533 (setq image
(cons 'image
(cdr image
))))
534 (let ((start (point)))
536 (add-text-properties start
(point)
538 (list (cons 'slice slice
) image
)
540 rear-nonsticky
(display)
541 keymap
,image-map
))))
545 (defun insert-sliced-image (image &optional string area rows cols
)
546 "Insert IMAGE into current buffer at point.
547 IMAGE is displayed by inserting STRING into the current buffer
548 with a `display' property whose value is the image. The default
549 STRING is a single space.
550 AREA is where to display the image. AREA nil or omitted means
551 display it in the text area, a value of `left-margin' means
552 display it in the left marginal area, a value of `right-margin'
553 means display it in the right marginal area.
554 The image is automatically split into ROWS x COLS slices."
555 (unless string
(setq string
" "))
556 (unless (eq (car-safe image
) 'image
)
557 (error "Not an image: %s" image
))
558 (unless (or (null area
) (memq area
'(left-margin right-margin
)))
559 (error "Invalid area %s" area
))
561 (setq image
(list (list 'margin area
) image
))
562 ;; Cons up a new spec equal but not eq to `image' so that
563 ;; inserting it twice in a row (adjacently) displays two copies of
564 ;; the image. Don't try to avoid this by looking at the display
565 ;; properties on either side so that we DTRT more often with
566 ;; cut-and-paste. (Yanking killed image text next to another copy
567 ;; of it loses anyway.)
568 (setq image
(cons 'image
(cdr image
))))
569 (let ((x 0.0) (dx (/ 1.0001 (or cols
1)))
570 (y 0.0) (dy (/ 1.0001 (or rows
1))))
573 (let ((start (point)))
575 (add-text-properties start
(point)
576 `(display ,(list (list 'slice x y dx dy
) image
)
577 rear-nonsticky
(display)
582 (insert (propertize "\n" 'line-height t
)))))
587 (defun remove-images (start end
&optional buffer
)
588 "Remove images between START and END in BUFFER.
589 Remove only images that were put in BUFFER with calls to `put-image'.
590 BUFFER nil or omitted means use the current buffer."
592 (setq buffer
(current-buffer)))
593 (let ((overlays (overlays-in start end
)))
595 (let ((overlay (car overlays
)))
596 (when (overlay-get overlay
'put-image
)
597 (delete-overlay overlay
)))
598 (setq overlays
(cdr overlays
)))))
600 (defun image-search-load-path (file &optional path
)
602 (setq path image-load-path
))
603 (let (element found filename
)
604 (while (and (not found
) (consp path
))
605 (setq element
(car path
))
610 (setq filename
(expand-file-name file element
)))))
611 ((and (symbolp element
) (boundp element
))
612 (setq element
(symbol-value element
))
617 (setq filename
(expand-file-name file element
)))))
619 (if (setq filename
(image-search-load-path file element
))
621 (setq path
(cdr path
)))
622 (if found filename
)))
625 (defun find-image (specs)
626 "Find an image, choosing one of a list of image specifications.
628 SPECS is a list of image specifications.
630 Each image specification in SPECS is a property list. The contents of
631 a specification are image type dependent. All specifications must at
632 least contain the properties `:type TYPE' and either `:file FILE' or
633 `:data DATA', where TYPE is a symbol specifying the image type,
634 e.g. `xbm', FILE is the file to load the image from, and DATA is a
635 string containing the actual image data. The specification whose TYPE
636 is supported, and FILE exists, is used to construct the image
637 specification to be returned. Return nil if no specification is
640 The image is looked for in `image-load-path'.
642 Image files should not be larger than specified by `max-image-size'."
644 (while (and specs
(null image
))
645 (let* ((spec (car specs
))
646 (type (plist-get spec
:type
))
647 (data (plist-get spec
:data
))
648 (file (plist-get spec
:file
))
650 (when (image-type-available-p type
)
651 (cond ((stringp file
)
652 (if (setq found
(image-search-load-path file
))
654 (cons 'image
(plist-put (copy-sequence spec
)
657 (setq image
(cons 'image spec
)))))
658 (setq specs
(cdr specs
))))
663 (defmacro defimage
(symbol specs
&optional doc
)
664 "Define SYMBOL as an image, and return SYMBOL.
666 SPECS is a list of image specifications. DOC is an optional
667 documentation string.
669 Each image specification in SPECS is a property list. The contents of
670 a specification are image type dependent. All specifications must at
671 least contain the properties `:type TYPE' and either `:file FILE' or
672 `:data DATA', where TYPE is a symbol specifying the image type,
673 e.g. `xbm', FILE is the file to load the image from, and DATA is a
674 string containing the actual image data. The first image
675 specification whose TYPE is supported, and FILE exists, is used to
680 (defimage test-image ((:type xpm :file \"~/test1.xpm\")
681 (:type xbm :file \"~/test1.xbm\")))"
682 (declare (doc-string 3))
683 `(defvar ,symbol
(find-image ',specs
) ,doc
))
686 ;;; Animated image API
688 (defvar image-default-frame-delay
0.1
689 "Default interval in seconds between frames of a multi-frame image.
690 Only used if the image does not specify a value.")
692 (defun image-multi-frame-p (image)
693 "Return non-nil if IMAGE contains more than one frame.
694 The actual return value is a cons (NIMAGES . DELAY), where NIMAGES is
695 the number of frames (or sub-images) in the image and DELAY is the delay
696 in seconds that the image specifies between each frame. DELAY may be nil,
697 in which case you might want to use `image-default-frame-delay'."
698 (when (fboundp 'image-metadata
)
699 (let* ((metadata (image-metadata image
))
700 (images (plist-get metadata
'count
))
701 (delay (plist-get metadata
'delay
)))
702 (when (and images
(> images
1))
703 (and delay
(or (not (numberp delay
)) (< delay
0))
704 (setq delay image-default-frame-delay
))
705 (cons images delay
)))))
707 (defun image-animated-p (image)
708 "Like `image-multi-frame-p', but returns nil if no delay is specified."
709 (let ((multi (image-multi-frame-p image
)))
710 (and (cdr multi
) multi
)))
712 (make-obsolete 'image-animated-p
'image-multi-frame-p
"24.4")
715 (defun image-animate (image &optional index limit
)
716 "Start animating IMAGE.
717 Animation occurs by destructively altering the IMAGE spec list.
719 With optional INDEX, begin animating from that animation frame.
720 LIMIT specifies how long to animate the image. If omitted or
721 nil, play the animation until the end. If t, loop forever. If a
722 number, play until that number of seconds has elapsed."
723 (let ((animation (image-multi-frame-p image
))
726 (if (setq timer
(image-animate-timer image
))
727 (cancel-timer timer
))
728 (plist-put (cdr image
) :animate-buffer
(current-buffer))
729 (run-with-timer 0.2 nil
#'image-animate-timeout
730 image
(or index
0) (car animation
)
731 0 limit
(+ (float-time) 0.2)))))
733 (defun image-animate-timer (image)
734 "Return the animation timer for image IMAGE."
735 ;; See cancel-function-timers
736 (let ((tail timer-list
) timer
)
738 (setq timer
(car tail
)
740 (if (and (eq (timer--function timer
) #'image-animate-timeout
)
741 (eq (car-safe (timer--args timer
)) image
))
746 (defconst image-minimum-frame-delay
0.01
747 "Minimum interval in seconds between frames of an animated image.")
749 (defun image-current-frame (image)
750 "The current frame number of IMAGE, indexed from 0."
751 (or (plist-get (cdr image
) :index
) 0))
753 (defun image-show-frame (image n
&optional nocheck
)
754 "Show frame N of IMAGE.
755 Frames are indexed from 0. Optional argument NOCHECK non-nil means
756 do not check N is within the range of frames present in the image."
758 (if (< n
0) (setq n
0)
759 (setq n
(min n
(1- (car (image-multi-frame-p image
)))))))
760 (plist-put (cdr image
) :index n
)
761 (force-window-update))
763 (defun image-animate-get-speed (image)
764 "Return the speed factor for animating IMAGE."
765 (or (plist-get (cdr image
) :speed
) 1))
767 (defun image-animate-set-speed (image value
&optional multiply
)
768 "Set the speed factor for animating IMAGE to VALUE.
769 With optional argument MULTIPLY non-nil, treat VALUE as a
770 multiplication factor for the current value."
771 (plist-put (cdr image
) :speed
773 (* value
(image-animate-get-speed image
))
776 ;; FIXME? The delay may not be the same for different sub-images,
777 ;; hence we need to call image-multi-frame-p to return it.
778 ;; But it also returns count, so why do we bother passing that as an
780 (defun image-animate-timeout (image n count time-elapsed limit target-time
)
781 "Display animation frame N of IMAGE.
782 N=0 refers to the initial animation frame.
783 COUNT is the total number of frames in the animation.
784 TIME-ELAPSED is the total time that has elapsed since
785 `image-animate-start' was called.
786 LIMIT determines when to stop. If t, loop forever. If nil, stop
787 after displaying the last animation frame. Otherwise, stop
788 after LIMIT seconds have elapsed.
789 The minimum delay between successive frames is `image-minimum-frame-delay'.
791 If the image has a non-nil :speed property, it acts as a multiplier
792 for the animation speed. A negative value means to animate in reverse."
793 (when (and (buffer-live-p (plist-get (cdr image
) :animate-buffer
))
794 ;; Delayed more than two seconds more than expected.
795 (or (<= (- (float-time) target-time
) 2)
797 (message "Stopping animation; animation possibly too big")
799 (image-show-frame image n t
)
800 (let* ((speed (image-animate-get-speed image
))
802 (animation (image-multi-frame-p image
))
803 ;; Subtract off the time we took to load the image from the
804 ;; stated delay time.
805 (delay (max (+ (* (or (cdr animation
) image-default-frame-delay
)
807 time
(- (float-time)))
808 image-minimum-frame-delay
))
810 (setq n
(if (< speed
0)
814 (cond ((>= n count
) (setq n
0))
815 ((< n
0) (setq n
(1- count
))))
816 (and (or (>= n count
) (< n
0)) (setq done t
)))
817 (setq time-elapsed
(+ delay time-elapsed
))
819 (setq done
(>= time-elapsed limit
)))
821 (run-with-timer delay nil
#'image-animate-timeout
822 image n count time-elapsed limit
823 (+ (float-time) delay
))))))
826 (defvar imagemagick-types-inhibit
)
827 (defvar imagemagick-enabled-types
)
829 (defun imagemagick-filter-types ()
830 "Return a list of the ImageMagick types to be treated as images, or nil.
831 This is the result of `imagemagick-types', including only elements
832 that match `imagemagick-enabled-types' and do not match
833 `imagemagick-types-inhibit'."
834 (when (fboundp 'imagemagick-types
)
835 (cond ((null imagemagick-enabled-types
) nil
)
836 ((eq imagemagick-types-inhibit t
) nil
)
841 (unless (memq type imagemagick-types-inhibit
)
842 (if (eq imagemagick-enabled-types t
) type
844 (dolist (enable imagemagick-enabled-types nil
)
845 (if (cond ((symbolp enable
) (eq enable type
))
848 (symbol-name type
))))
849 (throw 'found type
)))))))
850 (imagemagick-types)))))))
852 (defvar imagemagick--file-regexp nil
853 "File extension regexp for ImageMagick files, if any.
854 This is the extension installed into `auto-mode-alist' and
855 `image-type-file-name-regexps' by `imagemagick-register-types'.")
858 (defun imagemagick-register-types ()
859 "Register file types that can be handled by ImageMagick.
860 This function is called at startup, after loading the init file.
861 It registers the ImageMagick types returned by `imagemagick-filter-types'.
863 Registered image types are added to `auto-mode-alist', so that
864 Emacs visits them in Image mode. They are also added to
865 `image-type-file-name-regexps', so that the `image-type' function
866 recognizes these files as having image type `imagemagick'.
868 If Emacs is compiled without ImageMagick support, this does nothing."
869 (when (fboundp 'imagemagick-types
)
870 (let* ((types (mapcar (lambda (type) (downcase (symbol-name type
)))
871 (imagemagick-filter-types)))
872 (re (if types
(concat "\\." (regexp-opt types
) "\\'")))
873 (ama-elt (car (member (cons imagemagick--file-regexp
'image-mode
)
875 (itfnr-elt (car (member (cons imagemagick--file-regexp
'imagemagick
)
876 image-type-file-name-regexps
))))
878 (setq auto-mode-alist
(delete ama-elt auto-mode-alist
)
879 image-type-file-name-regexps
880 (delete itfnr-elt image-type-file-name-regexps
))
883 (push (cons re
'image-mode
) auto-mode-alist
))
885 (setcar itfnr-elt re
)
886 ;; Append to `image-type-file-name-regexps', so that we
887 ;; preferentially use specialized image libraries.
888 (add-to-list 'image-type-file-name-regexps
889 (cons re
'imagemagick
) t
)))
890 (setq imagemagick--file-regexp re
))))
892 (defcustom imagemagick-types-inhibit
893 '(C HTML HTM INFO M TXT PDF
)
894 "List of ImageMagick types that should never be treated as images.
895 This should be a list of symbols, each of which should be one of
896 the ImageMagick types listed by `imagemagick-types'. The listed
897 image types are not registered by `imagemagick-register-types'.
899 If the value is t, inhibit the use of ImageMagick for images.
901 If you change this without using customize, you must call
902 `imagemagick-register-types' afterwards.
904 If Emacs is compiled without ImageMagick support, this variable
906 :type
'(choice (const :tag
"Support all ImageMagick types" nil
)
907 (const :tag
"Disable all ImageMagick types" t
)
909 :initialize
#'custom-initialize-default
910 :set
(lambda (symbol value
)
911 (set-default symbol value
)
912 (imagemagick-register-types))
915 (defcustom imagemagick-enabled-types
916 '(3FR ART ARW AVS BMP BMP2 BMP3 CAL CALS CMYK CMYKA CR2 CRW
917 CUR CUT DCM DCR DCX DDS DJVU DNG DPX EXR FAX FITS GBR GIF
918 GIF87 GRB HRZ ICB ICO ICON J2C JNG JP2 JPC JPEG JPG JPX K25
919 KDC MIFF MNG MRW MSL MSVG MTV NEF ORF OTB PBM PCD PCDS PCL
920 PCT PCX PDB PEF PGM PICT PIX PJPEG PNG PNG24 PNG32 PNG8 PNM
921 PPM PSD PTIF PWP RAF RAS RBG RGB RGBA RGBO RLA RLE SCR SCT
922 SFW SGI SR2 SRF SUN SVG SVGZ TGA TIFF TIFF64 TILE TIM TTF
923 UYVY VDA VICAR VID VIFF VST WBMP WPG X3F XBM XC XCF XPM XV
924 XWD YCbCr YCbCrA YUV
)
925 "List of ImageMagick types to treat as images.
926 Each list element should be a string or symbol, representing one
927 of the image types returned by `imagemagick-types'. If the
928 element is a string, it is handled as a regexp that enables all
931 The value of `imagemagick-enabled-types' may also be t, meaning
932 to enable all types that ImageMagick supports.
934 The variable `imagemagick-types-inhibit' overrides this variable.
936 If you change this without using customize, you must call
937 `imagemagick-register-types' afterwards.
939 If Emacs is compiled without ImageMagick support, this variable
941 :type
'(choice (const :tag
"Support all ImageMagick types" t
)
942 (const :tag
"Disable all ImageMagick types" nil
)
943 (repeat :tag
"List of types"
944 (choice (symbol :tag
"type")
945 (regexp :tag
"regexp"))))
946 :initialize
#'custom-initialize-default
947 :set
(lambda (symbol value
)
948 (set-default symbol value
)
949 (imagemagick-register-types))
952 (imagemagick-register-types)
954 (defun image-increase-size (n)
955 "Increase the image size by a factor of N.
956 If N is 3, then the image size will be increased by 30%. The
959 (image--change-size (if n
963 (defun image-decrease-size (n)
964 "Decrease the image size by a factor of N.
965 If N is 3, then the image size will be decreased by 30%. The
968 (image--change-size (if n
972 (defun image--get-image ()
973 (let ((image (get-text-property (point) 'display
)))
974 (unless (eq (car-safe image
) 'image
)
975 (error "No image under point"))
978 (defun image--get-imagemagick-and-warn ()
979 (unless (fboundp 'imagemagick-types
)
980 (error "Can't rescale images without ImageMagick support"))
981 (let ((image (image--get-image)))
983 (plist-put (cdr image
) :type
'imagemagick
)
986 (defun image--change-size (factor)
987 (let* ((image (image--get-imagemagick-and-warn))
988 (new-image (image--image-without-parameters image
))
989 (scale (image--current-scaling image new-image
)))
990 (setcdr image
(cdr new-image
))
991 (plist-put (cdr image
) :scale
(* scale factor
))))
993 (defun image--image-without-parameters (image)
997 (let ((key (pop image
))
999 (unless (memq key
'(:scale
:width
:height
:max-width
:max-height
))
1000 (setq new
(nconc new
(list key val
))))))
1003 (defun image--current-scaling (image new-image
)
1004 ;; The image may be scaled due to many reasons (:scale, :max-width,
1005 ;; etc), so find out what the current scaling is based on the
1006 ;; original image size and the displayed size.
1007 (let ((image-width (car (image-size new-image t
)))
1008 (display-width (car (image-size image t
))))
1009 (/ (float display-width
) image-width
)))
1011 (defun image-rotate ()
1012 "Rotate the image under point by 90 degrees clockwise."
1014 (let ((image (image--get-imagemagick-and-warn)))
1015 (plist-put (cdr image
) :rotation
1016 (float (+ (or (plist-get (cdr image
) :rotation
) 0) 90)))))
1018 (defun image-save ()
1019 "Save the image under point."
1021 (let ((image (get-text-property (point) 'display
)))
1022 (when (or (not (consp image
))
1023 (not (eq (car image
) 'image
)))
1024 (error "No image under point"))
1026 (let ((file (plist-get (cdr image
) :file
)))
1028 (if (not (file-exists-p file
))
1029 (error "File %s no longer exists" file
)
1030 (insert-file-contents-literally file
))
1031 (insert (plist-get (cdr image
) :data
))))
1032 (write-region (point-min) (point-max)
1033 (read-file-name "Write image to file: ")))))
1037 ;;; image.el ends here