1999-07-21 21:43:52 +00:00
|
|
|
|
;;; image.el --- image API
|
|
|
|
|
|
2012-02-28 08:17:21 +00:00
|
|
|
|
;; Copyright (C) 1998-2012 Free Software Foundation, Inc.
|
2001-12-25 11:03:46 +00:00
|
|
|
|
|
|
|
|
|
;; Maintainer: FSF
|
1999-08-17 14:22:28 +00:00
|
|
|
|
;; Keywords: multimedia
|
2010-08-29 16:17:13 +00:00
|
|
|
|
;; Package: emacs
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1999-07-21 21:43:52 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2000-10-05 07:46:30 +00:00
|
|
|
|
|
|
|
|
|
(defgroup image ()
|
|
|
|
|
"Image support."
|
|
|
|
|
:group 'multimedia)
|
|
|
|
|
|
2010-05-22 16:48:01 +00:00
|
|
|
|
(defalias 'image-refresh 'image-flush)
|
2000-10-05 07:46:30 +00:00
|
|
|
|
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(defconst image-type-header-regexps
|
2007-08-25 14:05:49 +00:00
|
|
|
|
`(("\\`/[\t\n\r ]*\\*.*XPM.\\*/" . xpm)
|
2006-12-30 01:51:24 +00:00
|
|
|
|
("\\`P[1-6][[:space:]]+\\(?:#.*[[:space:]]+\\)*[0-9]+[[:space:]]+[0-9]+" . pbm)
|
2007-01-28 07:09:44 +00:00
|
|
|
|
("\\`GIF8[79]a" . gif)
|
2006-12-30 01:51:24 +00:00
|
|
|
|
("\\`\x89PNG\r\n\x1a\n" . png)
|
2008-11-24 17:21:57 +00:00
|
|
|
|
("\\`[\t\n\r ]*#define \\([a-z0-9_]+\\)_width [0-9]+\n\
|
|
|
|
|
#define \\1_height [0-9]+\n\\(\
|
|
|
|
|
#define \\1_x_hot [0-9]+\n\
|
|
|
|
|
#define \\1_y_hot [0-9]+\n\\)?\
|
|
|
|
|
static \\(unsigned \\)?char \\1_bits" . xbm)
|
2006-12-30 01:51:24 +00:00
|
|
|
|
("\\`\\(?:MM\0\\*\\|II\\*\0\\)" . tiff)
|
|
|
|
|
("\\`[\t\n\r ]*%!PS" . postscript)
|
2009-08-28 23:49:32 +00:00
|
|
|
|
("\\`\xff\xd8" . jpeg) ; used to be (image-jpeg-p . jpeg)
|
2007-08-25 14:05:49 +00:00
|
|
|
|
(,(let* ((incomment-re "\\(?:[^-]\\|-[^-]\\)")
|
|
|
|
|
(comment-re (concat "\\(?:!--" incomment-re "*-->[ \t\r\n]*<\\)")))
|
|
|
|
|
(concat "\\(?:<\\?xml[ \t\r\n]+[^>]*>\\)?[ \t\r\n]*<"
|
|
|
|
|
comment-re "*"
|
|
|
|
|
"\\(?:!DOCTYPE[ \t\r\n]+[^>]*>[ \t\r\n]*<[ \t\r\n]*" comment-re "*\\)?"
|
|
|
|
|
"[Ss][Vv][Gg]"))
|
|
|
|
|
. svg)
|
|
|
|
|
)
|
2006-12-30 01:51:24 +00:00
|
|
|
|
"Alist of (REGEXP . IMAGE-TYPE) pairs used to auto-detect image types.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
When the first bytes of an image file match REGEXP, it is assumed to
|
2006-12-30 01:51:24 +00:00
|
|
|
|
be of image type IMAGE-TYPE if IMAGE-TYPE is a symbol. If not a symbol,
|
|
|
|
|
IMAGE-TYPE must be a pair (PREDICATE . TYPE). PREDICATE is called
|
|
|
|
|
with one argument, a string containing the image data. If PREDICATE returns
|
|
|
|
|
a non-nil value, TYPE is the image's type.")
|
2001-08-08 10:54:12 +00:00
|
|
|
|
|
2011-03-22 13:10:43 +00:00
|
|
|
|
(defvar image-type-file-name-regexps
|
2005-10-21 23:42:21 +00:00
|
|
|
|
'(("\\.png\\'" . png)
|
|
|
|
|
("\\.gif\\'" . gif)
|
|
|
|
|
("\\.jpe?g\\'" . jpeg)
|
|
|
|
|
("\\.bmp\\'" . bmp)
|
|
|
|
|
("\\.xpm\\'" . xpm)
|
|
|
|
|
("\\.pbm\\'" . pbm)
|
|
|
|
|
("\\.xbm\\'" . xbm)
|
|
|
|
|
("\\.ps\\'" . postscript)
|
2007-08-25 14:05:49 +00:00
|
|
|
|
("\\.tiff?\\'" . tiff)
|
|
|
|
|
("\\.svgz?\\'" . svg)
|
|
|
|
|
)
|
2005-10-21 23:42:21 +00:00
|
|
|
|
"Alist of (REGEXP . IMAGE-TYPE) pairs used to identify image files.
|
|
|
|
|
When the name of an image file match REGEXP, it is assumed to
|
|
|
|
|
be of image type IMAGE-TYPE.")
|
|
|
|
|
|
2007-02-09 16:50:16 +00:00
|
|
|
|
;; We rely on `auto-mode-alist' to detect xbm and xpm files, instead
|
|
|
|
|
;; of content autodetection. Their contents are just C code, so it is
|
|
|
|
|
;; easy to generate false matches.
|
2006-12-30 01:51:24 +00:00
|
|
|
|
(defvar image-type-auto-detectable
|
|
|
|
|
'((pbm . t)
|
2007-02-09 16:50:16 +00:00
|
|
|
|
(xbm . nil)
|
2006-12-30 01:51:24 +00:00
|
|
|
|
(bmp . maybe)
|
|
|
|
|
(gif . maybe)
|
|
|
|
|
(png . maybe)
|
2007-02-09 16:50:16 +00:00
|
|
|
|
(xpm . nil)
|
2006-12-30 01:51:24 +00:00
|
|
|
|
(jpeg . maybe)
|
|
|
|
|
(tiff . maybe)
|
2007-08-25 14:05:49 +00:00
|
|
|
|
(svg . maybe)
|
2006-12-30 01:51:24 +00:00
|
|
|
|
(postscript . nil))
|
|
|
|
|
"Alist of (IMAGE-TYPE . AUTODETECT) pairs used to auto-detect image files.
|
|
|
|
|
\(See `image-type-auto-detected-p').
|
|
|
|
|
|
|
|
|
|
AUTODETECT can be
|
|
|
|
|
- t always auto-detect.
|
|
|
|
|
- nil never auto-detect.
|
|
|
|
|
- maybe auto-detect only if the image type is available
|
|
|
|
|
(see `image-type-available-p').")
|
2005-10-21 23:42:21 +00:00
|
|
|
|
|
2009-09-12 03:55:46 +00:00
|
|
|
|
(defcustom image-load-path
|
|
|
|
|
(list (file-name-as-directory (expand-file-name "images" data-directory))
|
|
|
|
|
'data-directory 'load-path)
|
2005-09-15 14:00:09 +00:00
|
|
|
|
"List of locations in which to search for image files.
|
2005-09-18 14:04:46 +00:00
|
|
|
|
If an element is a string, it defines a directory to search.
|
|
|
|
|
If an element is a variable symbol whose value is a string, that
|
|
|
|
|
value defines a directory to search.
|
|
|
|
|
If an element is a variable symbol whose value is a list, the
|
2009-09-12 03:55:46 +00:00
|
|
|
|
value is used as a list of directories to search."
|
|
|
|
|
:type '(repeat (choice directory variable))
|
|
|
|
|
:initialize 'custom-initialize-delay)
|
2005-10-22 15:26:36 +00:00
|
|
|
|
|
2006-03-14 19:16:24 +00:00
|
|
|
|
|
2006-03-11 02:04:08 +00:00
|
|
|
|
(defun image-load-path-for-library (library image &optional path no-error)
|
2006-03-19 18:19:12 +00:00
|
|
|
|
"Return a suitable search path for images used by LIBRARY.
|
2006-03-10 22:52:26 +00:00
|
|
|
|
|
2006-03-17 17:26:58 +00:00
|
|
|
|
It searches for IMAGE in `image-load-path' (excluding
|
2006-03-16 16:55:26 +00:00
|
|
|
|
\"`data-directory'/images\") and `load-path', followed by a path
|
|
|
|
|
suitable for LIBRARY, which includes \"../../etc/images\" and
|
|
|
|
|
\"../etc/images\" relative to the library file itself, and then
|
|
|
|
|
in \"`data-directory'/images\".
|
2006-03-10 22:52:26 +00:00
|
|
|
|
|
2006-03-14 19:16:24 +00:00
|
|
|
|
Then this function returns a list of directories which contains
|
|
|
|
|
first the directory in which IMAGE was found, followed by the
|
2009-02-24 10:28:57 +00:00
|
|
|
|
value of `load-path'. If PATH is given, it is used instead of
|
2006-03-14 19:16:24 +00:00
|
|
|
|
`load-path'.
|
2006-03-11 02:04:08 +00:00
|
|
|
|
|
2006-03-14 19:16:24 +00:00
|
|
|
|
If NO-ERROR is non-nil and a suitable path can't be found, don't
|
2009-02-24 10:28:57 +00:00
|
|
|
|
signal an error. Instead, return a list of directories as before,
|
2006-03-14 19:16:24 +00:00
|
|
|
|
except that nil appears in place of the image directory.
|
2006-03-10 22:52:26 +00:00
|
|
|
|
|
|
|
|
|
Here is an example that uses a common idiom to provide
|
|
|
|
|
compatibility with versions of Emacs that lack the variable
|
|
|
|
|
`image-load-path':
|
|
|
|
|
|
2006-03-15 17:06:16 +00:00
|
|
|
|
;; Shush compiler.
|
|
|
|
|
(defvar image-load-path)
|
2006-03-14 19:16:24 +00:00
|
|
|
|
|
|
|
|
|
(let* ((load-path (image-load-path-for-library \"mh-e\" \"mh-logo.xpm\"))
|
2006-03-15 17:06:16 +00:00
|
|
|
|
(image-load-path (cons (car load-path)
|
|
|
|
|
(when (boundp 'image-load-path)
|
|
|
|
|
image-load-path))))
|
2006-03-14 19:16:24 +00:00
|
|
|
|
(mh-tool-bar-folder-buttons-init))"
|
2006-03-10 22:52:26 +00:00
|
|
|
|
(unless library (error "No library specified"))
|
|
|
|
|
(unless image (error "No image specified"))
|
2006-03-16 16:55:26 +00:00
|
|
|
|
(let (image-directory image-directory-load-path)
|
|
|
|
|
;; Check for images in image-load-path or load-path.
|
|
|
|
|
(let ((img image)
|
|
|
|
|
(dir (or
|
|
|
|
|
;; Images in image-load-path.
|
|
|
|
|
(image-search-load-path image)
|
|
|
|
|
;; Images in load-path.
|
|
|
|
|
(locate-library image)))
|
|
|
|
|
parent)
|
|
|
|
|
;; Since the image might be in a nested directory (for
|
|
|
|
|
;; example, mail/attach.pbm), adjust `image-directory'
|
|
|
|
|
;; accordingly.
|
|
|
|
|
(when dir
|
|
|
|
|
(setq dir (file-name-directory dir))
|
|
|
|
|
(while (setq parent (file-name-directory img))
|
|
|
|
|
(setq img (directory-file-name parent)
|
|
|
|
|
dir (expand-file-name "../" dir))))
|
|
|
|
|
(setq image-directory-load-path dir))
|
|
|
|
|
|
2012-02-28 08:17:21 +00:00
|
|
|
|
;; If `image-directory-load-path' isn't Emacs's image directory,
|
2006-03-16 16:55:26 +00:00
|
|
|
|
;; it's probably a user preference, so use it. Then use a
|
|
|
|
|
;; relative setting if possible; otherwise, use
|
|
|
|
|
;; `image-directory-load-path'.
|
2006-03-10 22:52:26 +00:00
|
|
|
|
(cond
|
2006-03-16 16:55:26 +00:00
|
|
|
|
;; User-modified image-load-path?
|
|
|
|
|
((and image-directory-load-path
|
|
|
|
|
(not (equal image-directory-load-path
|
|
|
|
|
(file-name-as-directory
|
|
|
|
|
(expand-file-name "images" data-directory)))))
|
|
|
|
|
(setq image-directory image-directory-load-path))
|
2006-03-10 22:52:26 +00:00
|
|
|
|
;; Try relative setting.
|
|
|
|
|
((let (library-name d1ei d2ei)
|
|
|
|
|
;; First, find library in the load-path.
|
|
|
|
|
(setq library-name (locate-library library))
|
|
|
|
|
(if (not library-name)
|
|
|
|
|
(error "Cannot find library %s in load-path" library))
|
|
|
|
|
;; And then set image-directory relative to that.
|
|
|
|
|
(setq
|
|
|
|
|
;; Go down 2 levels.
|
2006-03-16 16:55:26 +00:00
|
|
|
|
d2ei (file-name-as-directory
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(concat (file-name-directory library-name) "../../etc/images")))
|
2006-03-10 22:52:26 +00:00
|
|
|
|
;; Go down 1 level.
|
2006-03-16 16:55:26 +00:00
|
|
|
|
d1ei (file-name-as-directory
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(concat (file-name-directory library-name) "../etc/images"))))
|
2006-03-10 22:52:26 +00:00
|
|
|
|
(setq image-directory
|
|
|
|
|
;; Set it to nil if image is not found.
|
|
|
|
|
(cond ((file-exists-p (expand-file-name image d2ei)) d2ei)
|
|
|
|
|
((file-exists-p (expand-file-name image d1ei)) d1ei)))))
|
2012-02-28 08:17:21 +00:00
|
|
|
|
;; Use Emacs's image directory.
|
2006-03-16 16:55:26 +00:00
|
|
|
|
(image-directory-load-path
|
|
|
|
|
(setq image-directory image-directory-load-path))
|
2006-03-11 02:04:08 +00:00
|
|
|
|
(no-error
|
|
|
|
|
(message "Could not find image %s for library %s" image library))
|
2006-03-10 22:52:26 +00:00
|
|
|
|
(t
|
|
|
|
|
(error "Could not find image %s for library %s" image library)))
|
|
|
|
|
|
2006-03-14 19:16:24 +00:00
|
|
|
|
;; Return an augmented `path' or `load-path'.
|
|
|
|
|
(nconc (list image-directory)
|
|
|
|
|
(delete image-directory (copy-sequence (or path load-path))))))
|
|
|
|
|
|
2006-03-10 22:52:26 +00:00
|
|
|
|
|
2012-02-08 03:45:27 +00:00
|
|
|
|
;; Used to be in image-type-header-regexps, but now not used anywhere
|
|
|
|
|
;; (since 2009-08-28).
|
2001-08-08 10:54:12 +00:00
|
|
|
|
(defun image-jpeg-p (data)
|
2002-08-05 16:26:03 +00:00
|
|
|
|
"Value is non-nil if DATA, a string, consists of JFIF image data.
|
|
|
|
|
We accept the tag Exif because that is the same format."
|
2008-06-27 15:58:36 +00:00
|
|
|
|
(setq data (ignore-errors (string-to-unibyte data)))
|
|
|
|
|
(when (and data (string-match-p "\\`\xff\xd8" data))
|
2001-08-08 10:54:12 +00:00
|
|
|
|
(catch 'jfif
|
|
|
|
|
(let ((len (length data)) (i 2))
|
|
|
|
|
(while (< i len)
|
|
|
|
|
(when (/= (aref data i) #xff)
|
|
|
|
|
(throw 'jfif nil))
|
|
|
|
|
(setq i (1+ i))
|
|
|
|
|
(when (>= (+ i 2) len)
|
|
|
|
|
(throw 'jfif nil))
|
|
|
|
|
(let ((nbytes (+ (lsh (aref data (+ i 1)) 8)
|
2001-08-10 10:59:06 +00:00
|
|
|
|
(aref data (+ i 2))))
|
|
|
|
|
(code (aref data i)))
|
|
|
|
|
(when (and (>= code #xe0) (<= code #xef))
|
2001-08-08 10:54:12 +00:00
|
|
|
|
;; APP0 LEN1 LEN2 "JFIF\0"
|
2003-02-04 11:26:42 +00:00
|
|
|
|
(throw 'jfif
|
2008-06-27 15:58:36 +00:00
|
|
|
|
(string-match-p "JFIF\\|Exif"
|
|
|
|
|
(substring data i (min (+ i nbytes) len)))))
|
2001-08-09 09:31:56 +00:00
|
|
|
|
(setq i (+ i 1 nbytes))))))))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
2000-01-01 16:33:32 +00:00
|
|
|
|
(defun image-type-from-data (data)
|
|
|
|
|
"Determine the image type from image data DATA.
|
|
|
|
|
Value is a symbol specifying the image type or nil if type cannot
|
1999-07-21 21:43:52 +00:00
|
|
|
|
be determined."
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(let ((types image-type-header-regexps)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
type)
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(while types
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(let ((regexp (car (car types)))
|
2006-12-30 01:51:24 +00:00
|
|
|
|
(image-type (cdr (car types))))
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(if (or (and (symbolp image-type)
|
2008-06-27 15:58:36 +00:00
|
|
|
|
(string-match-p regexp data))
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(and (consp image-type)
|
|
|
|
|
(funcall (car image-type) data)
|
|
|
|
|
(setq image-type (cdr image-type))))
|
|
|
|
|
(setq type image-type
|
|
|
|
|
types nil)
|
|
|
|
|
(setq types (cdr types)))))
|
|
|
|
|
type))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
2006-12-30 01:51:24 +00:00
|
|
|
|
(defun image-type-from-buffer ()
|
2005-10-21 23:42:21 +00:00
|
|
|
|
"Determine the image type from data in the current buffer.
|
2006-12-30 01:51:24 +00:00
|
|
|
|
Value is a symbol specifying the image type or nil if type cannot
|
|
|
|
|
be determined."
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(let ((types image-type-header-regexps)
|
|
|
|
|
type
|
|
|
|
|
(opoint (point)))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while types
|
|
|
|
|
(let ((regexp (car (car types)))
|
2006-12-30 01:51:24 +00:00
|
|
|
|
(image-type (cdr (car types)))
|
2005-10-21 23:42:21 +00:00
|
|
|
|
data)
|
|
|
|
|
(if (or (and (symbolp image-type)
|
2008-06-27 15:58:36 +00:00
|
|
|
|
(looking-at-p regexp))
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(and (consp image-type)
|
|
|
|
|
(funcall (car image-type)
|
|
|
|
|
(or data
|
|
|
|
|
(setq data
|
|
|
|
|
(buffer-substring
|
|
|
|
|
(point-min)
|
|
|
|
|
(min (point-max)
|
|
|
|
|
(+ (point-min) 256))))))
|
|
|
|
|
(setq image-type (cdr image-type))))
|
2006-12-30 01:51:24 +00:00
|
|
|
|
(setq type image-type
|
2005-10-21 23:42:21 +00:00
|
|
|
|
types nil)
|
|
|
|
|
(setq types (cdr types)))))
|
|
|
|
|
(goto-char opoint)
|
2012-04-26 08:43:20 +00:00
|
|
|
|
(and type
|
|
|
|
|
(memq type image-types)
|
|
|
|
|
type)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
2000-01-01 16:33:32 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun image-type-from-file-header (file)
|
|
|
|
|
"Determine the type of image file FILE from its first few bytes.
|
|
|
|
|
Value is a symbol specifying the image type, or nil if type cannot
|
|
|
|
|
be determined."
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(unless (or (file-readable-p file)
|
|
|
|
|
(file-name-absolute-p file))
|
|
|
|
|
(setq file (image-search-load-path file)))
|
|
|
|
|
(and file
|
|
|
|
|
(file-readable-p file)
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(set-buffer-multibyte nil)
|
|
|
|
|
(insert-file-contents-literally file nil 0 256)
|
2006-12-30 01:51:24 +00:00
|
|
|
|
(image-type-from-buffer))))
|
2005-10-21 23:42:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun image-type-from-file-name (file)
|
|
|
|
|
"Determine the type of image file FILE from its name.
|
|
|
|
|
Value is a symbol specifying the image type, or nil if type cannot
|
|
|
|
|
be determined."
|
2008-06-27 15:58:36 +00:00
|
|
|
|
(assoc-default file image-type-file-name-regexps 'string-match-p))
|
2000-01-01 16:33:32 +00:00
|
|
|
|
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
;;;###autoload
|
2007-05-21 16:43:13 +00:00
|
|
|
|
(defun image-type (source &optional type data-p)
|
2006-04-21 20:56:06 +00:00
|
|
|
|
"Determine and return image type.
|
2007-05-21 16:43:13 +00:00
|
|
|
|
SOURCE is an image file name or image data.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
Optional TYPE is a symbol describing the image type. If TYPE is omitted
|
2000-01-01 16:33:32 +00:00
|
|
|
|
or nil, try to determine the image type from its first few bytes
|
2007-05-21 16:43:13 +00:00
|
|
|
|
of image data. If that doesn't work, and SOURCE is a file name,
|
2000-12-08 17:08:25 +00:00
|
|
|
|
use its file extension as image type.
|
2007-05-21 16:43:13 +00:00
|
|
|
|
Optional DATA-P non-nil means SOURCE is a string containing image data."
|
|
|
|
|
(when (and (not data-p) (not (stringp source)))
|
|
|
|
|
(error "Invalid image file name `%s'" source))
|
2000-01-01 16:33:32 +00:00
|
|
|
|
(unless type
|
2007-05-21 16:43:13 +00:00
|
|
|
|
(setq type (if data-p
|
|
|
|
|
(image-type-from-data source)
|
|
|
|
|
(or (image-type-from-file-header source)
|
|
|
|
|
(image-type-from-file-name source))))
|
|
|
|
|
(or type (error "Cannot determine image type")))
|
2007-10-06 22:17:49 +00:00
|
|
|
|
(or (memq type (and (boundp 'image-types) image-types))
|
2007-05-21 16:43:13 +00:00
|
|
|
|
(error "Invalid image type `%s'" type))
|
2006-04-21 20:56:06 +00:00
|
|
|
|
type)
|
|
|
|
|
|
2006-12-30 01:51:24 +00:00
|
|
|
|
|
2012-02-04 02:09:34 +00:00
|
|
|
|
(if (fboundp 'image-metadata) ; eg not --without-x
|
|
|
|
|
(define-obsolete-function-alias 'image-extension-data
|
|
|
|
|
'image-metadata' "24.1"))
|
|
|
|
|
|
2010-10-13 14:50:06 +00:00
|
|
|
|
(define-obsolete-variable-alias
|
|
|
|
|
'image-library-alist
|
|
|
|
|
'dynamic-library-alist "24.1")
|
2008-06-12 03:56:20 +00:00
|
|
|
|
|
2006-04-21 20:56:06 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun image-type-available-p (type)
|
|
|
|
|
"Return non-nil if image type TYPE is available.
|
|
|
|
|
Image types are symbols like `xbm' or `jpeg'."
|
|
|
|
|
(and (fboundp 'init-image-library)
|
2010-10-13 14:50:06 +00:00
|
|
|
|
(init-image-library type dynamic-library-alist)))
|
2006-04-21 20:56:06 +00:00
|
|
|
|
|
|
|
|
|
|
2006-12-30 01:51:24 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun image-type-auto-detected-p ()
|
2007-08-08 07:40:09 +00:00
|
|
|
|
"Return t if the current buffer contains an auto-detectable image.
|
2007-05-21 16:43:13 +00:00
|
|
|
|
This function is intended to be used from `magic-fallback-mode-alist'.
|
|
|
|
|
|
|
|
|
|
The buffer is considered to contain an auto-detectable image if
|
|
|
|
|
its beginning matches an image type in `image-type-header-regexps',
|
2007-09-27 06:38:29 +00:00
|
|
|
|
and that image type is present in `image-type-auto-detectable' with a
|
|
|
|
|
non-nil value. If that value is non-nil, but not t, then the image type
|
|
|
|
|
must be available."
|
2006-12-30 01:51:24 +00:00
|
|
|
|
(let* ((type (image-type-from-buffer))
|
|
|
|
|
(auto (and type (cdr (assq type image-type-auto-detectable)))))
|
2007-09-27 16:41:34 +00:00
|
|
|
|
(and auto
|
2007-05-21 16:43:13 +00:00
|
|
|
|
(or (eq auto t) (image-type-available-p type)))))
|
2006-12-30 01:51:24 +00:00
|
|
|
|
|
|
|
|
|
|
2006-04-21 20:56:06 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun create-image (file-or-data &optional type data-p &rest props)
|
|
|
|
|
"Create an image.
|
|
|
|
|
FILE-OR-DATA is an image file name or image data.
|
|
|
|
|
Optional TYPE is a symbol describing the image type. If TYPE is omitted
|
|
|
|
|
or nil, try to determine the image type from its first few bytes
|
|
|
|
|
of image data. If that doesn't work, and FILE-OR-DATA is a file name,
|
|
|
|
|
use its file extension as image type.
|
|
|
|
|
Optional DATA-P non-nil means FILE-OR-DATA is a string containing image data.
|
|
|
|
|
Optional PROPS are additional image attributes to assign to the image,
|
|
|
|
|
like, e.g. `:mask MASK'.
|
|
|
|
|
Value is the image created, or nil if images of type TYPE are not supported.
|
|
|
|
|
|
2007-08-22 07:50:47 +00:00
|
|
|
|
Images should not be larger than specified by `max-image-size'.
|
|
|
|
|
|
|
|
|
|
Image file names that are not absolute are searched for in the
|
|
|
|
|
\"images\" sub-directory of `data-directory' and
|
|
|
|
|
`x-bitmap-file-path' (in that order)."
|
|
|
|
|
;; It is x_find_image_file in image.c that sets the search path.
|
2006-04-21 20:56:06 +00:00
|
|
|
|
(setq type (image-type file-or-data type data-p))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(when (image-type-available-p type)
|
2000-01-01 16:33:32 +00:00
|
|
|
|
(append (list 'image :type type (if data-p :data :file) file-or-data)
|
|
|
|
|
props)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
2000-06-06 14:27:42 +00:00
|
|
|
|
(defun put-image (image pos &optional string area)
|
1999-09-09 14:54:25 +00:00
|
|
|
|
"Put image IMAGE in front of POS in the current buffer.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
IMAGE must be an image created with `create-image' or `defimage'.
|
1999-09-25 19:57:50 +00:00
|
|
|
|
IMAGE is displayed by putting an overlay into the current buffer with a
|
|
|
|
|
`before-string' STRING that has a `display' property whose value is the
|
2000-06-06 14:27:42 +00:00
|
|
|
|
image. STRING is defaulted if you omit it.
|
2011-07-17 15:57:47 +00:00
|
|
|
|
The overlay created will have the `put-image' property set to t.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
POS may be an integer or marker.
|
|
|
|
|
AREA is where to display the image. AREA nil or omitted means
|
|
|
|
|
display it in the text area, a value of `left-margin' means
|
|
|
|
|
display it in the left marginal area, a value of `right-margin'
|
1999-09-25 19:57:50 +00:00
|
|
|
|
means display it in the right marginal area."
|
2000-06-13 18:18:02 +00:00
|
|
|
|
(unless string (setq string "x"))
|
1999-09-09 14:54:25 +00:00
|
|
|
|
(let ((buffer (current-buffer)))
|
2000-06-06 14:27:42 +00:00
|
|
|
|
(unless (eq (car-safe image) 'image)
|
1999-09-09 14:54:25 +00:00
|
|
|
|
(error "Not an image: %s" image))
|
|
|
|
|
(unless (or (null area) (memq area '(left-margin right-margin)))
|
|
|
|
|
(error "Invalid area %s" area))
|
1999-09-25 19:57:50 +00:00
|
|
|
|
(setq string (copy-sequence string))
|
1999-09-09 14:54:25 +00:00
|
|
|
|
(let ((overlay (make-overlay pos pos buffer))
|
1999-09-25 19:57:50 +00:00
|
|
|
|
(prop (if (null area) image (list (list 'margin area) image))))
|
|
|
|
|
(put-text-property 0 (length string) 'display prop string)
|
1999-09-09 14:54:25 +00:00
|
|
|
|
(overlay-put overlay 'put-image t)
|
2012-04-10 02:34:57 +00:00
|
|
|
|
(overlay-put overlay 'before-string string)
|
|
|
|
|
overlay)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
2004-04-20 22:23:08 +00:00
|
|
|
|
(defun insert-image (image &optional string area slice)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
"Insert IMAGE into current buffer at point.
|
1999-09-25 19:57:50 +00:00
|
|
|
|
IMAGE is displayed by inserting STRING into the current buffer
|
2011-07-25 01:44:10 +00:00
|
|
|
|
with a `display' property whose value is the image. STRING
|
|
|
|
|
defaults to the empty string if you omit it.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
AREA is where to display the image. AREA nil or omitted means
|
|
|
|
|
display it in the text area, a value of `left-margin' means
|
|
|
|
|
display it in the left marginal area, a value of `right-margin'
|
2004-04-20 22:23:08 +00:00
|
|
|
|
means display it in the right marginal area.
|
|
|
|
|
SLICE specifies slice of IMAGE to insert. SLICE nil or omitted
|
|
|
|
|
means insert whole image. SLICE is a list (X Y WIDTH HEIGHT)
|
|
|
|
|
specifying the X and Y positions and WIDTH and HEIGHT of image area
|
|
|
|
|
to insert. A float value 0.0 - 1.0 means relative to the width or
|
|
|
|
|
height of the image; integer values are taken as pixel values."
|
2000-06-13 18:18:02 +00:00
|
|
|
|
;; Use a space as least likely to cause trouble when it's a hidden
|
|
|
|
|
;; character in the buffer.
|
|
|
|
|
(unless string (setq string " "))
|
2000-06-06 14:27:42 +00:00
|
|
|
|
(unless (eq (car-safe image) 'image)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(error "Not an image: %s" image))
|
|
|
|
|
(unless (or (null area) (memq area '(left-margin right-margin)))
|
|
|
|
|
(error "Invalid area %s" area))
|
2000-06-12 20:36:40 +00:00
|
|
|
|
(if area
|
|
|
|
|
(setq image (list (list 'margin area) image))
|
|
|
|
|
;; Cons up a new spec equal but not eq to `image' so that
|
|
|
|
|
;; inserting it twice in a row (adjacently) displays two copies of
|
|
|
|
|
;; the image. Don't try to avoid this by looking at the display
|
|
|
|
|
;; properties on either side so that we DTRT more often with
|
|
|
|
|
;; cut-and-paste. (Yanking killed image text next to another copy
|
|
|
|
|
;; of it loses anyway.)
|
|
|
|
|
(setq image (cons 'image (cdr image))))
|
1999-09-25 19:57:50 +00:00
|
|
|
|
(let ((start (point)))
|
|
|
|
|
(insert string)
|
|
|
|
|
(add-text-properties start (point)
|
2004-04-20 22:23:08 +00:00
|
|
|
|
`(display ,(if slice
|
|
|
|
|
(list (cons 'slice slice) image)
|
|
|
|
|
image) rear-nonsticky (display)))))
|
|
|
|
|
|
|
|
|
|
|
2005-03-17 23:56:15 +00:00
|
|
|
|
;;;###autoload
|
2004-04-20 22:23:08 +00:00
|
|
|
|
(defun insert-sliced-image (image &optional string area rows cols)
|
2004-09-22 23:12:38 +00:00
|
|
|
|
"Insert IMAGE into current buffer at point.
|
|
|
|
|
IMAGE is displayed by inserting STRING into the current buffer
|
|
|
|
|
with a `display' property whose value is the image. STRING is
|
|
|
|
|
defaulted if you omit it.
|
|
|
|
|
AREA is where to display the image. AREA nil or omitted means
|
|
|
|
|
display it in the text area, a value of `left-margin' means
|
|
|
|
|
display it in the left marginal area, a value of `right-margin'
|
|
|
|
|
means display it in the right marginal area.
|
2009-02-24 10:28:57 +00:00
|
|
|
|
The image is automatically split into ROWS x COLS slices."
|
2004-04-20 22:23:08 +00:00
|
|
|
|
(unless string (setq string " "))
|
|
|
|
|
(unless (eq (car-safe image) 'image)
|
|
|
|
|
(error "Not an image: %s" image))
|
|
|
|
|
(unless (or (null area) (memq area '(left-margin right-margin)))
|
|
|
|
|
(error "Invalid area %s" area))
|
|
|
|
|
(if area
|
|
|
|
|
(setq image (list (list 'margin area) image))
|
|
|
|
|
;; Cons up a new spec equal but not eq to `image' so that
|
|
|
|
|
;; inserting it twice in a row (adjacently) displays two copies of
|
|
|
|
|
;; the image. Don't try to avoid this by looking at the display
|
|
|
|
|
;; properties on either side so that we DTRT more often with
|
|
|
|
|
;; cut-and-paste. (Yanking killed image text next to another copy
|
|
|
|
|
;; of it loses anyway.)
|
|
|
|
|
(setq image (cons 'image (cdr image))))
|
|
|
|
|
(let ((x 0.0) (dx (/ 1.0001 (or cols 1)))
|
|
|
|
|
(y 0.0) (dy (/ 1.0001 (or rows 1))))
|
|
|
|
|
(while (< y 1.0)
|
|
|
|
|
(while (< x 1.0)
|
|
|
|
|
(let ((start (point)))
|
|
|
|
|
(insert string)
|
|
|
|
|
(add-text-properties start (point)
|
|
|
|
|
`(display ,(list (list 'slice x y dx dy) image)
|
|
|
|
|
rear-nonsticky (display)))
|
|
|
|
|
(setq x (+ x dx))))
|
|
|
|
|
(setq x 0.0
|
|
|
|
|
y (+ y dy))
|
2005-01-01 13:08:33 +00:00
|
|
|
|
(insert (propertize "\n" 'line-height t)))))
|
2004-04-20 22:23:08 +00:00
|
|
|
|
|
1999-10-13 17:38:18 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun remove-images (start end &optional buffer)
|
|
|
|
|
"Remove images between START and END in BUFFER.
|
|
|
|
|
Remove only images that were put in BUFFER with calls to `put-image'.
|
|
|
|
|
BUFFER nil or omitted means use the current buffer."
|
|
|
|
|
(unless buffer
|
|
|
|
|
(setq buffer (current-buffer)))
|
|
|
|
|
(let ((overlays (overlays-in start end)))
|
|
|
|
|
(while overlays
|
|
|
|
|
(let ((overlay (car overlays)))
|
|
|
|
|
(when (overlay-get overlay 'put-image)
|
1999-10-03 19:25:32 +00:00
|
|
|
|
(delete-overlay overlay)))
|
|
|
|
|
(setq overlays (cdr overlays)))))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(defun image-search-load-path (file &optional path)
|
|
|
|
|
(unless path
|
|
|
|
|
(setq path image-load-path))
|
|
|
|
|
(let (element found filename)
|
2005-09-15 14:00:09 +00:00
|
|
|
|
(while (and (not found) (consp path))
|
2005-09-18 14:04:46 +00:00
|
|
|
|
(setq element (car path))
|
2005-09-15 14:00:09 +00:00
|
|
|
|
(cond
|
2005-09-18 14:04:46 +00:00
|
|
|
|
((stringp element)
|
2005-09-15 14:00:09 +00:00
|
|
|
|
(setq found
|
|
|
|
|
(file-readable-p
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(setq filename (expand-file-name file element)))))
|
2005-09-18 14:04:46 +00:00
|
|
|
|
((and (symbolp element) (boundp element))
|
|
|
|
|
(setq element (symbol-value element))
|
|
|
|
|
(cond
|
|
|
|
|
((stringp element)
|
|
|
|
|
(setq found
|
|
|
|
|
(file-readable-p
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(setq filename (expand-file-name file element)))))
|
2005-09-18 14:04:46 +00:00
|
|
|
|
((consp element)
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(if (setq filename (image-search-load-path file element))
|
2005-09-18 14:04:46 +00:00
|
|
|
|
(setq found t))))))
|
2005-09-15 14:00:09 +00:00
|
|
|
|
(setq path (cdr path)))
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(if found filename)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
2000-04-26 17:34:09 +00:00
|
|
|
|
(defun find-image (specs)
|
|
|
|
|
"Find an image, choosing one of a list of image specifications.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2000-06-06 14:27:42 +00:00
|
|
|
|
SPECS is a list of image specifications.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
Each image specification in SPECS is a property list. The contents of
|
|
|
|
|
a specification are image type dependent. All specifications must at
|
1999-12-31 15:54:44 +00:00
|
|
|
|
least contain the properties `:type TYPE' and either `:file FILE' or
|
|
|
|
|
`:data DATA', where TYPE is a symbol specifying the image type,
|
|
|
|
|
e.g. `xbm', FILE is the file to load the image from, and DATA is a
|
2000-06-06 14:27:42 +00:00
|
|
|
|
string containing the actual image data. The specification whose TYPE
|
|
|
|
|
is supported, and FILE exists, is used to construct the image
|
|
|
|
|
specification to be returned. Return nil if no specification is
|
|
|
|
|
satisfied.
|
|
|
|
|
|
2005-10-19 03:55:20 +00:00
|
|
|
|
The image is looked for in `image-load-path'.
|
|
|
|
|
|
|
|
|
|
Image files should not be larger than specified by `max-image-size'."
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(let (image)
|
|
|
|
|
(while (and specs (null image))
|
|
|
|
|
(let* ((spec (car specs))
|
|
|
|
|
(type (plist-get spec :type))
|
2000-01-01 16:33:32 +00:00
|
|
|
|
(data (plist-get spec :data))
|
2000-03-01 12:47:15 +00:00
|
|
|
|
(file (plist-get spec :file))
|
|
|
|
|
found)
|
2000-01-01 16:33:32 +00:00
|
|
|
|
(when (image-type-available-p type)
|
|
|
|
|
(cond ((stringp file)
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(if (setq found (image-search-load-path file))
|
2005-09-15 14:00:09 +00:00
|
|
|
|
(setq image
|
|
|
|
|
(cons 'image (plist-put (copy-sequence spec)
|
|
|
|
|
:file found)))))
|
2000-01-01 16:42:20 +00:00
|
|
|
|
((not (null data))
|
2000-01-01 16:33:32 +00:00
|
|
|
|
(setq image (cons 'image spec)))))
|
|
|
|
|
(setq specs (cdr specs))))
|
2000-04-26 17:34:09 +00:00
|
|
|
|
image))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defmacro defimage (symbol specs &optional doc)
|
|
|
|
|
"Define SYMBOL as an image.
|
|
|
|
|
|
|
|
|
|
SPECS is a list of image specifications. DOC is an optional
|
|
|
|
|
documentation string.
|
|
|
|
|
|
|
|
|
|
Each image specification in SPECS is a property list. The contents of
|
|
|
|
|
a specification are image type dependent. All specifications must at
|
|
|
|
|
least contain the properties `:type TYPE' and either `:file FILE' or
|
|
|
|
|
`:data DATA', where TYPE is a symbol specifying the image type,
|
|
|
|
|
e.g. `xbm', FILE is the file to load the image from, and DATA is a
|
|
|
|
|
string containing the actual image data. The first image
|
|
|
|
|
specification whose TYPE is supported, and FILE exists, is used to
|
|
|
|
|
define SYMBOL.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
|
|
(defimage test-image ((:type xpm :file \"~/test1.xpm\")
|
|
|
|
|
(:type xbm :file \"~/test1.xbm\")))"
|
2005-10-24 16:43:03 +00:00
|
|
|
|
(declare (doc-string 3))
|
2000-04-26 17:34:09 +00:00
|
|
|
|
`(defvar ,symbol (find-image ',specs) ,doc))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2010-03-07 19:02:20 +00:00
|
|
|
|
|
|
|
|
|
;;; Animated image API
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2010-03-07 19:02:20 +00:00
|
|
|
|
(defconst image-animated-types '(gif)
|
|
|
|
|
"List of supported animated image types.")
|
|
|
|
|
|
2011-06-07 18:32:12 +00:00
|
|
|
|
(defun image-animated-p (image)
|
2012-02-03 08:44:30 +00:00
|
|
|
|
"Return non-nil if IMAGE can be animated.
|
|
|
|
|
To be capable of being animated, an image must be of a type
|
|
|
|
|
listed in `image-animated-types', and contain more than one
|
|
|
|
|
sub-image, with a specified animation delay. The actual return
|
|
|
|
|
value is a cons (NIMAGES . DELAY), where NIMAGES is the number
|
|
|
|
|
of sub-images in the animated image and DELAY is the delay in
|
|
|
|
|
seconds until the next sub-image should be displayed."
|
2011-06-07 18:32:12 +00:00
|
|
|
|
(cond
|
2012-02-03 08:44:30 +00:00
|
|
|
|
((memq (plist-get (cdr image) :type) image-animated-types)
|
2011-06-07 18:32:12 +00:00
|
|
|
|
(let* ((metadata (image-metadata image))
|
|
|
|
|
(images (plist-get metadata 'count))
|
2011-06-11 23:03:16 +00:00
|
|
|
|
(delay (plist-get metadata 'delay)))
|
|
|
|
|
(when (and images (> images 1) (numberp delay))
|
|
|
|
|
(if (< delay 0) (setq delay 0.1))
|
|
|
|
|
(cons images delay))))))
|
2010-03-07 19:02:20 +00:00
|
|
|
|
|
2012-02-03 08:44:30 +00:00
|
|
|
|
;; "Destructively"?
|
2011-06-07 18:32:12 +00:00
|
|
|
|
(defun image-animate (image &optional index limit)
|
|
|
|
|
"Start animating IMAGE.
|
|
|
|
|
Animation occurs by destructively altering the IMAGE spec list.
|
|
|
|
|
|
|
|
|
|
With optional INDEX, begin animating from that animation frame.
|
|
|
|
|
LIMIT specifies how long to animate the image. If omitted or
|
|
|
|
|
nil, play the animation until the end. If t, loop forever. If a
|
|
|
|
|
number, play until that number of seconds has elapsed."
|
2011-06-11 23:03:16 +00:00
|
|
|
|
(let ((animation (image-animated-p image))
|
|
|
|
|
timer)
|
|
|
|
|
(when animation
|
2011-06-07 18:32:12 +00:00
|
|
|
|
(if (setq timer (image-animate-timer image))
|
|
|
|
|
(cancel-timer timer))
|
2011-06-11 23:03:16 +00:00
|
|
|
|
(run-with-timer 0.2 nil 'image-animate-timeout
|
|
|
|
|
image (or index 0) (car animation)
|
|
|
|
|
0 limit))))
|
2010-03-07 19:02:20 +00:00
|
|
|
|
|
|
|
|
|
(defun image-animate-timer (image)
|
|
|
|
|
"Return the animation timer for image IMAGE."
|
|
|
|
|
;; See cancel-function-timers
|
|
|
|
|
(let ((tail timer-list) timer)
|
|
|
|
|
(while tail
|
|
|
|
|
(setq timer (car tail)
|
|
|
|
|
tail (cdr tail))
|
2011-06-07 18:32:12 +00:00
|
|
|
|
(if (and (eq (aref timer 5) 'image-animate-timeout)
|
|
|
|
|
(eq (car-safe (aref timer 6)) image))
|
2010-03-07 19:02:20 +00:00
|
|
|
|
(setq tail nil)
|
|
|
|
|
(setq timer nil)))
|
|
|
|
|
timer))
|
|
|
|
|
|
2012-02-03 08:44:30 +00:00
|
|
|
|
;; FIXME? The delay may not be the same for different sub-images,
|
|
|
|
|
;; hence we need to call image-animated-p to return it.
|
|
|
|
|
;; But it also returns count, so why do we bother passing that as an
|
|
|
|
|
;; argument?
|
2011-06-11 23:03:16 +00:00
|
|
|
|
(defun image-animate-timeout (image n count time-elapsed limit)
|
2011-05-29 21:35:35 +00:00
|
|
|
|
"Display animation frame N of IMAGE.
|
|
|
|
|
N=0 refers to the initial animation frame.
|
|
|
|
|
COUNT is the total number of frames in the animation.
|
|
|
|
|
TIME-ELAPSED is the total time that has elapsed since
|
|
|
|
|
`image-animate-start' was called.
|
2011-06-07 18:32:12 +00:00
|
|
|
|
LIMIT determines when to stop. If t, loop forever. If nil, stop
|
2011-05-29 21:35:35 +00:00
|
|
|
|
after displaying the last animation frame. Otherwise, stop
|
2012-02-03 08:44:30 +00:00
|
|
|
|
after LIMIT seconds have elapsed.
|
|
|
|
|
The minimum delay between successive frames is 0.01s."
|
2011-06-11 23:03:16 +00:00
|
|
|
|
(plist-put (cdr image) :index n)
|
|
|
|
|
(force-window-update)
|
|
|
|
|
(setq n (1+ n))
|
|
|
|
|
(let* ((time (float-time))
|
|
|
|
|
(animation (image-animated-p image))
|
|
|
|
|
;; Subtract off the time we took to load the image from the
|
|
|
|
|
;; stated delay time.
|
|
|
|
|
(delay (max (+ (cdr animation) time (- (float-time)))
|
|
|
|
|
0.01))
|
|
|
|
|
done)
|
2011-05-29 21:35:35 +00:00
|
|
|
|
(if (>= n count)
|
2011-06-07 18:32:12 +00:00
|
|
|
|
(if limit
|
2011-05-29 21:35:35 +00:00
|
|
|
|
(setq n 0)
|
|
|
|
|
(setq done t)))
|
|
|
|
|
(setq time-elapsed (+ delay time-elapsed))
|
2011-06-07 18:32:12 +00:00
|
|
|
|
(if (numberp limit)
|
|
|
|
|
(setq done (>= time-elapsed limit)))
|
2011-05-29 21:35:35 +00:00
|
|
|
|
(unless done
|
|
|
|
|
(run-with-timer delay nil 'image-animate-timeout
|
2011-06-11 23:03:16 +00:00
|
|
|
|
image n count time-elapsed limit))))
|
2010-03-07 19:02:20 +00:00
|
|
|
|
|
|
|
|
|
|
2012-04-16 03:47:43 +00:00
|
|
|
|
(defvar imagemagick--file-regexp nil
|
|
|
|
|
"File extension regexp for ImageMagick files, if any.
|
|
|
|
|
This is the extension installed into `auto-mode-alist' and
|
|
|
|
|
`image-type-file-name-regexps' by `imagemagick-register-types'.")
|
2010-04-02 21:09:13 +00:00
|
|
|
|
|
2012-05-31 07:22:33 +00:00
|
|
|
|
(defvar imagemagick-types-inhibit)
|
|
|
|
|
(defvar imagemagick-types-enable)
|
|
|
|
|
|
2010-04-02 21:09:13 +00:00
|
|
|
|
;;;###autoload
|
2010-05-13 13:13:52 +00:00
|
|
|
|
(defun imagemagick-register-types ()
|
2011-05-29 18:17:28 +00:00
|
|
|
|
"Register file types that can be handled by ImageMagick.
|
2012-04-16 03:47:43 +00:00
|
|
|
|
This function is called at startup, after loading the init file.
|
2012-05-31 07:22:33 +00:00
|
|
|
|
It registers the ImageMagick types returned by `imagemagick-types',
|
|
|
|
|
including only those from `imagemagick-types-enable', and excluding
|
|
|
|
|
those from `imagemagick-types-inhibit'.
|
2012-03-30 16:31:24 +00:00
|
|
|
|
|
|
|
|
|
Registered image types are added to `auto-mode-alist', so that
|
|
|
|
|
Emacs visits them in Image mode. They are also added to
|
|
|
|
|
`image-type-file-name-regexps', so that the `image-type' function
|
|
|
|
|
recognizes these files as having image type `imagemagick'.
|
2011-05-29 18:17:28 +00:00
|
|
|
|
|
2012-05-31 07:22:33 +00:00
|
|
|
|
If Emacs is compiled without ImageMagick support, this does nothing."
|
2011-05-29 18:17:28 +00:00
|
|
|
|
(when (fboundp 'imagemagick-types)
|
2012-05-31 07:22:33 +00:00
|
|
|
|
(let* ((include
|
|
|
|
|
(cond ((null imagemagick-types-enable) nil)
|
|
|
|
|
((eq imagemagick-types-inhibit t) nil)
|
|
|
|
|
((eq imagemagick-types-enable t) (imagemagick-types))
|
|
|
|
|
(t
|
|
|
|
|
(delq nil
|
|
|
|
|
(mapcar
|
|
|
|
|
(lambda (type)
|
|
|
|
|
(catch 'found
|
|
|
|
|
(dolist (enable imagemagick-types-enable nil)
|
|
|
|
|
(if (cond ((symbolp enable) (eq enable type))
|
|
|
|
|
((stringp enable)
|
|
|
|
|
(string-match enable
|
|
|
|
|
(symbol-name type))))
|
|
|
|
|
(throw 'found type)))))
|
|
|
|
|
(imagemagick-types))))))
|
|
|
|
|
(re (let (types)
|
|
|
|
|
(dolist (type include)
|
|
|
|
|
(unless (memq type imagemagick-types-inhibit)
|
|
|
|
|
(push (downcase (symbol-name type)) types)))
|
|
|
|
|
(if types (concat "\\." (regexp-opt types) "\\'"))))
|
|
|
|
|
(ama-elt (car (member (cons imagemagick--file-regexp 'image-mode)
|
|
|
|
|
auto-mode-alist)))
|
|
|
|
|
(itfnr-elt (car (member (cons imagemagick--file-regexp 'imagemagick)
|
|
|
|
|
image-type-file-name-regexps))))
|
|
|
|
|
(if (not re)
|
|
|
|
|
(setq auto-mode-alist (delete ama-elt auto-mode-alist)
|
|
|
|
|
image-type-file-name-regexps
|
|
|
|
|
(delete itfnr-elt image-type-file-name-regexps))
|
|
|
|
|
(if ama-elt
|
|
|
|
|
(setcar ama-elt re)
|
|
|
|
|
(push (cons re 'image-mode) auto-mode-alist))
|
|
|
|
|
(if itfnr-elt
|
|
|
|
|
(setcar itfnr-elt re)
|
|
|
|
|
(push (cons re 'imagemagick) image-type-file-name-regexps)))
|
2012-04-16 03:47:43 +00:00
|
|
|
|
(setq imagemagick--file-regexp re))))
|
|
|
|
|
|
|
|
|
|
(defcustom imagemagick-types-inhibit
|
|
|
|
|
'(C HTML HTM TXT PDF)
|
|
|
|
|
"List of ImageMagick types that should not be treated as images.
|
|
|
|
|
This should be a list of symbols, each of which should be one of
|
|
|
|
|
the ImageMagick types listed in `imagemagick-types'. The listed
|
|
|
|
|
image types are not registered by `imagemagick-register-types'.
|
|
|
|
|
|
|
|
|
|
If the value is t, inhibit the use of ImageMagick for images.
|
|
|
|
|
|
2012-05-25 20:24:58 +00:00
|
|
|
|
If you change this without using customize, you must call
|
|
|
|
|
`imagemagick-register-types' afterwards.
|
|
|
|
|
|
2012-04-16 03:47:43 +00:00
|
|
|
|
If Emacs is compiled without ImageMagick support, this variable
|
|
|
|
|
has no effect."
|
|
|
|
|
:type '(choice (const :tag "Support all ImageMagick types" nil)
|
|
|
|
|
(const :tag "Disable all ImageMagick types" t)
|
|
|
|
|
(repeat symbol))
|
2012-05-31 07:22:33 +00:00
|
|
|
|
:initialize 'custom-initialize-default
|
2012-04-16 03:47:43 +00:00
|
|
|
|
:set (lambda (symbol value)
|
|
|
|
|
(set-default symbol value)
|
|
|
|
|
(imagemagick-register-types))
|
|
|
|
|
:version "24.1"
|
|
|
|
|
:group 'image)
|
2010-04-02 21:09:13 +00:00
|
|
|
|
|
2012-05-31 07:22:33 +00:00
|
|
|
|
(defcustom imagemagick-types-enable
|
|
|
|
|
'("\\`BMP" DJVU "\\`GIF" "\\`ICO" "P?JPE?G" "P[BNP]M"
|
|
|
|
|
"\\`[MP]NG" "\\`TIFF")
|
|
|
|
|
"List of ImageMagick types to treat as images.
|
|
|
|
|
The list elements are either strings or symbols, and represent
|
|
|
|
|
types returned by `imagemagick-types'. A string is a regexp that
|
|
|
|
|
selects all types matching the regexp.
|
|
|
|
|
|
|
|
|
|
The value may also be t, meaning all the types that ImageMagick
|
|
|
|
|
supports; or nil, meaning no types.
|
|
|
|
|
|
|
|
|
|
The variable `imagemagick-types-inhibit' overrides this variable.
|
|
|
|
|
|
|
|
|
|
If you change this without using customize, you must call
|
|
|
|
|
`imagemagick-register-types' afterwards.
|
|
|
|
|
|
|
|
|
|
If Emacs is compiled without ImageMagick support, this variable
|
|
|
|
|
has no effect."
|
|
|
|
|
:type '(choice (const :tag "Support all ImageMagick types" t)
|
|
|
|
|
(const :tag "Disable all ImageMagick types" nil)
|
|
|
|
|
(repeat :tag "List of types"
|
|
|
|
|
(choice (symbol :tag "type")
|
|
|
|
|
(regexp :tag "regexp"))))
|
|
|
|
|
:initialize 'custom-initialize-default
|
|
|
|
|
:set (lambda (symbol value)
|
|
|
|
|
(set-default symbol value)
|
|
|
|
|
(imagemagick-register-types))
|
|
|
|
|
:version "24.2"
|
|
|
|
|
:group 'image)
|
|
|
|
|
|
|
|
|
|
(imagemagick-register-types)
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(provide 'image)
|
|
|
|
|
|
1999-10-05 18:41:17 +00:00
|
|
|
|
;;; image.el ends here
|