2016-05-23 19:12:24 +00:00
|
|
|
|
;;; image.el --- image API -*- lexical-binding:t -*-
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2023-01-01 10:31:12 +00:00
|
|
|
|
;; Copyright (C) 1998-2023 Free Software Foundation, Inc.
|
2001-12-25 11:03:46 +00:00
|
|
|
|
|
2019-05-25 20:43:06 +00:00
|
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
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
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://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."
|
2021-12-03 14:19:26 +00:00
|
|
|
|
:prefix "image-"
|
|
|
|
|
:link '(info-link "(emacs) Image Mode")
|
2000-10-05 07:46:30 +00:00
|
|
|
|
:group 'multimedia)
|
|
|
|
|
|
2018-02-27 06:47:27 +00:00
|
|
|
|
(declare-function image-flush "image.c" (spec &optional frame))
|
2022-08-22 17:22:27 +00:00
|
|
|
|
(declare-function clear-image-cache "image.c"
|
|
|
|
|
(&optional filter animation-cache))
|
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)
|
2015-09-17 23:08:20 +00:00
|
|
|
|
("\\`P[1-6]\\(?:\
|
2023-08-24 10:55:03 +00:00
|
|
|
|
\\(?:\\(?:#[^\r\n]*[\r\n]\\)*[ \t\r\n]\\)+\
|
2017-10-16 08:23:32 +00:00
|
|
|
|
\\(?:\\(?:#[^\r\n]*[\r\n]\\)*[0-9]\\)+\
|
2013-11-01 09:10:13 +00:00
|
|
|
|
\\)\\{2\\}" . 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)
|
2023-04-12 13:47:23 +00:00
|
|
|
|
("\\`RIFF[^z-a][^z-a][^z-a][^z-a]WEBPVP8" . webp)
|
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)
|
2021-11-26 12:54:07 +00:00
|
|
|
|
("\\`....ftyp\\(heic\\|heix\\|hevc\\|heim\\|heis\\|hevm\\|hevs\\|mif1\\|msf1\\)" . heic))
|
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)
|
2021-10-22 08:59:01 +00:00
|
|
|
|
("\\.webp\\'" . webp)
|
2005-10-21 23:42:21 +00:00
|
|
|
|
("\\.bmp\\'" . bmp)
|
|
|
|
|
("\\.xpm\\'" . xpm)
|
|
|
|
|
("\\.pbm\\'" . pbm)
|
|
|
|
|
("\\.xbm\\'" . xbm)
|
|
|
|
|
("\\.ps\\'" . postscript)
|
2007-08-25 14:05:49 +00:00
|
|
|
|
("\\.tiff?\\'" . tiff)
|
|
|
|
|
("\\.svgz?\\'" . svg)
|
2021-11-26 12:54:07 +00:00
|
|
|
|
("\\.hei[cf]s?\\'" . heic))
|
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)
|
2021-10-22 08:59:01 +00:00
|
|
|
|
(webp . maybe)
|
2021-11-26 12:54:07 +00:00
|
|
|
|
(postscript . nil)
|
|
|
|
|
(heic . maybe))
|
2006-12-30 01:51:24 +00:00
|
|
|
|
"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
|
|
|
|
|
2013-08-13 20:13:02 +00:00
|
|
|
|
(defvar image-format-suffixes
|
2016-12-02 10:09:31 +00:00
|
|
|
|
'((image/x-rgb "rgb") (image/x-icon "ico"))
|
2014-01-22 08:30:00 +00:00
|
|
|
|
"An alist associating image types with file name suffixes.
|
2013-08-13 17:45:34 +00:00
|
|
|
|
This is used as a hint by the ImageMagick library when detecting
|
2014-01-22 08:30:00 +00:00
|
|
|
|
the type of image data (that does not have an associated file name).
|
|
|
|
|
Each element has the form (MIME-CONTENT-TYPE EXTENSION).
|
|
|
|
|
If `create-image' is called with a :format attribute whose value
|
|
|
|
|
equals a content-type found in this list, the ImageMagick library is
|
|
|
|
|
told that the data would have the associated suffix if saved to a file.")
|
2013-08-13 17:45:34 +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.
|
2018-04-12 12:44:06 +00:00
|
|
|
|
The images for icons shown in the tool bar are also looked up
|
|
|
|
|
in these locations.
|
|
|
|
|
|
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
|
2013-10-27 23:04:16 +00:00
|
|
|
|
value is used as a list of directories to search.
|
|
|
|
|
|
|
|
|
|
Subdirectories are not automatically included in the search."
|
2009-09-12 03:55:46 +00:00
|
|
|
|
:type '(repeat (choice directory variable))
|
2016-05-23 19:12:24 +00:00
|
|
|
|
:initialize #'custom-initialize-delay)
|
2005-10-22 15:26:36 +00:00
|
|
|
|
|
2016-02-08 07:22:53 +00:00
|
|
|
|
(defcustom image-scaling-factor 'auto
|
|
|
|
|
"When displaying images, apply this scaling factor before displaying.
|
|
|
|
|
This is not supported for all image types, and is mostly useful
|
|
|
|
|
when you have a high-resolution monitor.
|
|
|
|
|
The value is either a floating point number (where numbers higher
|
|
|
|
|
than 1 means to increase the size and lower means to shrink the
|
|
|
|
|
size), or the symbol `auto', which will compute a scaling factor
|
|
|
|
|
based on the font pixel size."
|
|
|
|
|
:type '(choice number
|
|
|
|
|
(const :tag "Automatically compute" auto))
|
2016-11-16 15:39:43 +00:00
|
|
|
|
:version "26.1")
|
2006-03-14 19:16:24 +00:00
|
|
|
|
|
2021-03-12 01:37:10 +00:00
|
|
|
|
(defcustom image-transform-smoothing #'image--default-smoothing
|
|
|
|
|
"Whether to do smoothing when applying transforms to images.
|
|
|
|
|
Common transforms are rescaling and rotation.
|
|
|
|
|
|
|
|
|
|
Valid values are nil (no smoothing), t (smoothing) or a predicate
|
|
|
|
|
function that is called with the image specification and should return
|
|
|
|
|
either nil or non-nil."
|
|
|
|
|
:type '(choice (const :tag "Do smoothing" t)
|
|
|
|
|
(const :tag "No smoothing" nil)
|
|
|
|
|
function)
|
|
|
|
|
:version "28.1")
|
|
|
|
|
|
2019-09-30 04:00:52 +00:00
|
|
|
|
(defcustom image-use-external-converter nil
|
2019-09-28 23:26:02 +00:00
|
|
|
|
"If non-nil, `create-image' will use external converters for exotic formats.
|
2019-09-29 07:09:56 +00:00
|
|
|
|
Emacs handles most of the common image formats (SVG, JPEG, PNG, GIF
|
|
|
|
|
and some others) internally, but images that don't have native
|
|
|
|
|
support in Emacs can still be displayed if an external conversion
|
|
|
|
|
program (like ImageMagick \"convert\", GraphicsMagick \"gm\"
|
|
|
|
|
or \"ffmpeg\") is installed."
|
2019-10-01 08:50:47 +00:00
|
|
|
|
:type 'boolean
|
2019-09-28 23:26:02 +00:00
|
|
|
|
:version "27.1")
|
|
|
|
|
|
2019-10-29 20:42:33 +00:00
|
|
|
|
(define-error 'unknown-image-type "Unknown image type")
|
|
|
|
|
|
2023-04-08 09:43:34 +00:00
|
|
|
|
(defvar-keymap image-slice-map
|
|
|
|
|
:doc "Map put into text properties on sliced images."
|
2022-10-04 13:09:33 +00:00
|
|
|
|
"i" (define-keymap
|
|
|
|
|
"-" #'image-decrease-size
|
|
|
|
|
"+" #'image-increase-size
|
|
|
|
|
"o" #'image-save
|
|
|
|
|
"c" #'image-crop
|
2023-04-08 09:43:34 +00:00
|
|
|
|
"x" #'image-cut)
|
2022-01-30 23:10:58 +00:00
|
|
|
|
"C-<wheel-down>" #'image-mouse-decrease-size
|
|
|
|
|
"C-<mouse-5>" #'image-mouse-decrease-size
|
|
|
|
|
"C-<wheel-up>" #'image-mouse-increase-size
|
|
|
|
|
"C-<mouse-4>" #'image-mouse-increase-size)
|
2016-02-10 01:03:55 +00:00
|
|
|
|
|
2023-04-08 11:33:06 +00:00
|
|
|
|
(defvar-keymap image-map
|
|
|
|
|
:doc "Map put into text properties on images."
|
|
|
|
|
:parent image-slice-map
|
|
|
|
|
"i" (define-keymap
|
|
|
|
|
"r" #'image-rotate
|
|
|
|
|
"h" #'image-flip-horizontally
|
|
|
|
|
"v" #'image-flip-vertically))
|
|
|
|
|
|
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)
|
2015-11-17 23:28:50 +00:00
|
|
|
|
(when (boundp \\='image-load-path)
|
2006-03-15 17:06:16 +00:00
|
|
|
|
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."
|
2021-01-20 19:19:23 +00:00
|
|
|
|
(declare (obsolete "It is unused inside Emacs and will be removed." "27.1"))
|
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))
|
Audit use of lsh and fix glitches
I audited use of lsh in the Lisp source code, and fixed the
glitches that I found. While I was at it, I replaced uses of lsh
with ash when either will do. Replacement is OK when either
argument is known to be nonnegative, or when only the low-order
bits of the result matter, and is a (minor) win since ash is a bit
more solid than lsh nowadays, and is a bit faster.
* lisp/calc/calc-ext.el (math-check-fixnum):
Prefer most-positive-fixnum to (lsh -1 -1).
* lisp/vc/vc-hg.el (vc-hg-state-fast): When testing fixnum width,
prefer (zerop (ash most-positive-fixnum -32)) to (zerop (lsh -1
32)) (Bug#32485#11).
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode):
Tighten sanity-check for bytecode overflow, by checking that the
result of (ash pc -8) is nonnegative. Formerly this check was not
needed since lsh was used and the number overflowed differently.
* lisp/net/dns.el (dns-write): Fix some obvious sign typos in
shift counts. Evidently this part of the code has never been
exercised.
* lisp/progmodes/hideif.el (hif-shiftleft, hif-shiftright):
* lisp/term/common-win.el (x-setup-function-keys):
Simplify.
* admin/unidata/unidata-gen.el, admin/unidata/uvs.el:
* doc/lispref/keymaps.texi, doc/lispref/syntax.texi:
* doc/misc/calc.texi, doc/misc/cl.texi, etc/NEWS.19:
* lisp/arc-mode.el, lisp/calc/calc-bin.el, lisp/calc/calc-comb.el:
* lisp/calc/calc-ext.el, lisp/calc/calc-math.el:
* lisp/cedet/semantic/wisent/comp.el, lisp/composite.el:
* lisp/disp-table.el, lisp/dos-fns.el, lisp/edmacro.el:
* lisp/emacs-lisp/bindat.el, lisp/emacs-lisp/byte-opt.el:
* lisp/emacs-lisp/bytecomp.el, lisp/emacs-lisp/cl-extra.el:
* lisp/erc/erc-dcc.el, lisp/facemenu.el, lisp/gnus/message.el:
* lisp/gnus/nndoc.el, lisp/gnus/nnmaildir.el, lisp/image.el:
* lisp/international/ccl.el, lisp/international/fontset.el:
* lisp/international/mule-cmds.el, lisp/international/mule.el:
* lisp/json.el, lisp/mail/binhex.el, lisp/mail/rmail.el:
* lisp/mail/uudecode.el, lisp/md4.el, lisp/net/dns.el:
* lisp/net/ntlm.el, lisp/net/sasl.el, lisp/net/socks.el:
* lisp/net/tramp.el, lisp/obsolete/levents.el:
* lisp/obsolete/pgg-parse.el, lisp/org/org.el:
* lisp/org/ox-publish.el, lisp/progmodes/cc-defs.el:
* lisp/progmodes/ebnf2ps.el, lisp/progmodes/hideif.el:
* lisp/ps-bdf.el, lisp/ps-print.el, lisp/simple.el:
* lisp/tar-mode.el, lisp/term/common-win.el:
* lisp/term/tty-colors.el, lisp/term/xterm.el, lisp/vc/vc-git.el:
* lisp/vc/vc-hg.el, lisp/x-dnd.el, test/src/data-tests.el:
Prefer ash to lsh when either will do.
2018-08-21 20:44:03 +00:00
|
|
|
|
(let ((nbytes (+ (ash (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)
|
2019-05-18 17:00:26 +00:00
|
|
|
|
(+ (point-min) 8192))))))
|
2005-10-21 23:42:21 +00:00
|
|
|
|
(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
|
2013-09-18 04:24:14 +00:00
|
|
|
|
(boundp 'image-types)
|
2012-04-26 08:43:20 +00:00
|
|
|
|
(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)
|
2019-05-18 17:00:26 +00:00
|
|
|
|
(insert-file-contents-literally file nil 0 8192)
|
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.
|
2022-03-22 13:45:19 +00:00
|
|
|
|
Value is a symbol specifying the image type, or nil if type cannot
|
|
|
|
|
be determined."
|
2022-03-22 14:02:08 +00:00
|
|
|
|
(declare (obsolete image-supported-file-p "29.1"))
|
2022-03-22 13:45:19 +00:00
|
|
|
|
(let (type first (case-fold-search t))
|
2012-11-02 22:41:35 +00:00
|
|
|
|
(catch 'found
|
2022-03-22 13:45:19 +00:00
|
|
|
|
(dolist (elem image-type-file-name-regexps first)
|
|
|
|
|
(when (string-match-p (car elem) file)
|
|
|
|
|
(if (image-type-available-p (setq type (cdr elem)))
|
|
|
|
|
(throw 'found type)
|
|
|
|
|
;; If nothing seems to be supported, return first type that matched.
|
|
|
|
|
(or first (setq first type))))))))
|
2000-01-01 16:33:32 +00:00
|
|
|
|
|
2022-03-22 14:02:08 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun image-supported-file-p (file)
|
|
|
|
|
"Say whether Emacs has native support for displaying TYPE.
|
|
|
|
|
The value is a symbol specifying the image type, or nil if type
|
|
|
|
|
cannot be determined (or if Emacs doesn't have built-in support
|
|
|
|
|
for the image type)."
|
|
|
|
|
(let ((case-fold-search t)
|
|
|
|
|
type)
|
|
|
|
|
(catch 'found
|
|
|
|
|
(dolist (elem image-type-file-name-regexps)
|
|
|
|
|
(when (and (string-match-p (car elem) file)
|
|
|
|
|
(image-type-available-p (setq type (cdr elem))))
|
|
|
|
|
(throw 'found type))))))
|
|
|
|
|
|
2019-11-19 10:47:19 +00:00
|
|
|
|
(declare-function image-convert-p "image-converter.el"
|
|
|
|
|
(source &optional image-format))
|
|
|
|
|
(declare-function image-convert "image-converter.el"
|
|
|
|
|
(image &optional image-format))
|
2019-09-28 23:26:02 +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.
|
2019-11-19 10:47:19 +00:00
|
|
|
|
|
|
|
|
|
Optional DATA-P non-nil means SOURCE is a string containing image
|
|
|
|
|
data. If DATA-P is a symbol with a name on the format
|
|
|
|
|
`image/jpeg', that may be used as a hint to determine the image
|
|
|
|
|
type if we can't otherwise guess it."
|
2007-05-21 16:43:13 +00:00
|
|
|
|
(when (and (not data-p) (not (stringp source)))
|
Go back to grave quoting in source-code docstrings etc.
This reverts almost all my recent changes to use curved quotes
in docstrings and/or strings used for error diagnostics.
There are a few exceptions, e.g., Bahá’í proper names.
* admin/unidata/unidata-gen.el (unidata-gen-table):
* lisp/abbrev.el (expand-region-abbrevs):
* lisp/align.el (align-region):
* lisp/allout.el (allout-mode, allout-solicit-alternate-bullet)
(outlineify-sticky):
* lisp/apropos.el (apropos-library):
* lisp/bookmark.el (bookmark-default-annotation-text):
* lisp/button.el (button-category-symbol, button-put)
(make-text-button):
* lisp/calc/calc-aent.el (math-read-if, math-read-factor):
* lisp/calc/calc-embed.el (calc-do-embedded):
* lisp/calc/calc-ext.el (calc-user-function-list):
* lisp/calc/calc-graph.el (calc-graph-show-dumb):
* lisp/calc/calc-help.el (calc-describe-key)
(calc-describe-thing, calc-full-help):
* lisp/calc/calc-lang.el (calc-c-language)
(math-parse-fortran-vector-end, math-parse-tex-sum)
(math-parse-eqn-matrix, math-parse-eqn-prime)
(calc-yacas-language, calc-maxima-language, calc-giac-language)
(math-read-giac-subscr, math-read-math-subscr)
(math-read-big-rec, math-read-big-balance):
* lisp/calc/calc-misc.el (calc-help, report-calc-bug):
* lisp/calc/calc-mode.el (calc-auto-why, calc-save-modes)
(calc-auto-recompute):
* lisp/calc/calc-prog.el (calc-fix-token-name)
(calc-read-parse-table-part, calc-user-define-invocation)
(math-do-arg-check):
* lisp/calc/calc-store.el (calc-edit-variable):
* lisp/calc/calc-units.el (math-build-units-table-buffer):
* lisp/calc/calc-vec.el (math-read-brackets):
* lisp/calc/calc-yank.el (calc-edit-mode):
* lisp/calc/calc.el (calc, calc-do, calc-user-invocation):
* lisp/calendar/appt.el (appt-display-message):
* lisp/calendar/diary-lib.el (diary-check-diary-file)
(diary-mail-entries, diary-from-outlook):
* lisp/calendar/icalendar.el (icalendar-export-region)
(icalendar--convert-float-to-ical)
(icalendar--convert-date-to-ical)
(icalendar--convert-ical-to-diary)
(icalendar--convert-recurring-to-diary)
(icalendar--add-diary-entry):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/timeclock.el (timeclock-mode-line-display)
(timeclock-make-hours-explicit, timeclock-log-data):
* lisp/calendar/todo-mode.el (todo-prefix, todo-delete-category)
(todo-item-mark, todo-check-format)
(todo-insert-item--next-param, todo-edit-item--next-key)
(todo-mode):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/mode-local.el (describe-mode-local-overload)
(mode-local-print-binding, mode-local-describe-bindings-2):
* lisp/cedet/semantic/complete.el (semantic-displayor-show-request):
* lisp/cedet/srecode/srt-mode.el (srecode-macro-help):
* lisp/cus-start.el (standard):
* lisp/cus-theme.el (describe-theme-1):
* lisp/custom.el (custom-add-dependencies, custom-check-theme)
(custom--sort-vars-1, load-theme):
* lisp/descr-text.el (describe-text-properties-1, describe-char):
* lisp/dired-x.el (dired-do-run-mail):
* lisp/dired.el (dired-log):
* lisp/emacs-lisp/advice.el (ad-read-advised-function)
(ad-read-advice-class, ad-read-advice-name, ad-enable-advice)
(ad-disable-advice, ad-remove-advice, ad-set-argument)
(ad-set-arguments, ad--defalias-fset, ad-activate)
(ad-deactivate):
* lisp/emacs-lisp/byte-opt.el (byte-compile-inline-expand)
(byte-compile-unfold-lambda, byte-optimize-form-code-walker)
(byte-optimize-while, byte-optimize-apply):
* lisp/emacs-lisp/byte-run.el (defun, defsubst):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode)
(byte-compile-log-file, byte-compile-format-warn)
(byte-compile-nogroup-warn, byte-compile-arglist-warn)
(byte-compile-cl-warn)
(byte-compile-warn-about-unresolved-functions)
(byte-compile-file, byte-compile--declare-var)
(byte-compile-file-form-defmumble, byte-compile-form)
(byte-compile-normal-call, byte-compile-check-variable)
(byte-compile-variable-ref, byte-compile-variable-set)
(byte-compile-subr-wrong-args, byte-compile-setq-default)
(byte-compile-negation-optimizer)
(byte-compile-condition-case--old)
(byte-compile-condition-case--new, byte-compile-save-excursion)
(byte-compile-defvar, byte-compile-autoload)
(byte-compile-lambda-form)
(byte-compile-make-variable-buffer-local, display-call-tree)
(batch-byte-compile):
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv--analyze-use):
* lisp/emacs-lisp/chart.el (chart-space-usage):
* lisp/emacs-lisp/check-declare.el (check-declare-scan)
(check-declare-warn, check-declare-file)
(check-declare-directory):
* lisp/emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine)
(checkdoc-message-text-engine):
* lisp/emacs-lisp/cl-extra.el (cl-parse-integer)
(cl--describe-class):
* lisp/emacs-lisp/cl-generic.el (cl-defgeneric)
(cl--generic-describe, cl-generic-generalizers):
* lisp/emacs-lisp/cl-macs.el (cl--parse-loop-clause, cl-tagbody)
(cl-symbol-macrolet):
* lisp/emacs-lisp/cl.el (cl-unload-function, flet):
* lisp/emacs-lisp/copyright.el (copyright)
(copyright-update-directory):
* lisp/emacs-lisp/edebug.el (edebug-read-list):
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-read):
* lisp/emacs-lisp/eieio-core.el (eieio--slot-override)
(eieio-oref):
* lisp/emacs-lisp/eieio-opt.el (eieio-help-constructor):
* lisp/emacs-lisp/eieio-speedbar.el:
(eieio-speedbar-child-make-tag-lines)
(eieio-speedbar-child-description):
* lisp/emacs-lisp/eieio.el (defclass, change-class):
* lisp/emacs-lisp/elint.el (elint-file, elint-get-top-forms)
(elint-init-form, elint-check-defalias-form)
(elint-check-let-form):
* lisp/emacs-lisp/ert.el (ert-get-test, ert-results-mode-menu)
(ert-results-pop-to-backtrace-for-test-at-point)
(ert-results-pop-to-messages-for-test-at-point)
(ert-results-pop-to-should-forms-for-test-at-point)
(ert-describe-test):
* lisp/emacs-lisp/find-func.el (find-function-search-for-symbol)
(find-function-library):
* lisp/emacs-lisp/generator.el (iter-yield):
* lisp/emacs-lisp/gv.el (gv-define-simple-setter):
* lisp/emacs-lisp/lisp-mnt.el (lm-verify):
* lisp/emacs-lisp/macroexp.el (macroexp--obsolete-warning):
* lisp/emacs-lisp/map-ynp.el (map-y-or-n-p):
* lisp/emacs-lisp/nadvice.el (advice--make-docstring)
(advice--make, define-advice):
* lisp/emacs-lisp/package-x.el (package-upload-file):
* lisp/emacs-lisp/package.el (package-version-join)
(package-disabled-p, package-activate-1, package-activate)
(package--download-one-archive)
(package--download-and-read-archives)
(package-compute-transaction, package-install-from-archive)
(package-install, package-install-selected-packages)
(package-delete, package-autoremove, describe-package-1)
(package-install-button-action, package-delete-button-action)
(package-menu-hide-package, package-menu--list-to-prompt)
(package-menu--perform-transaction)
(package-menu--find-and-notify-upgrades):
* lisp/emacs-lisp/pcase.el (pcase-exhaustive, pcase--u1):
* lisp/emacs-lisp/re-builder.el (reb-enter-subexp-mode):
* lisp/emacs-lisp/ring.el (ring-previous, ring-next):
* lisp/emacs-lisp/rx.el (rx-check, rx-anything)
(rx-check-any-string, rx-check-any, rx-check-not, rx-=)
(rx-repeat, rx-check-backref, rx-syntax, rx-check-category)
(rx-form):
* lisp/emacs-lisp/smie.el (smie-config-save):
* lisp/emacs-lisp/subr-x.el (internal--check-binding):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-put-tag):
* lisp/emacs-lisp/testcover.el (testcover-1value):
* lisp/emacs-lisp/timer.el (timer-event-handler):
* lisp/emulation/viper-cmd.el (viper-toggle-parse-sexp-ignore-comments)
(viper-toggle-search-style, viper-kill-buffer)
(viper-brac-function):
* lisp/emulation/viper-macs.el (viper-record-kbd-macro):
* lisp/env.el (setenv):
* lisp/erc/erc-button.el (erc-nick-popup):
* lisp/erc/erc.el (erc-cmd-LOAD, erc-handle-login, english):
* lisp/eshell/em-dirs.el (eshell/cd):
* lisp/eshell/em-glob.el (eshell-glob-regexp)
(eshell-glob-entries):
* lisp/eshell/em-pred.el (eshell-parse-modifiers):
* lisp/eshell/esh-opt.el (eshell-show-usage):
* lisp/facemenu.el (facemenu-add-new-face)
(facemenu-add-new-color):
* lisp/faces.el (read-face-name, read-face-font, describe-face)
(x-resolve-font-name):
* lisp/files-x.el (modify-file-local-variable):
* lisp/files.el (locate-user-emacs-file, find-alternate-file)
(set-auto-mode, hack-one-local-variable--obsolete)
(dir-locals-set-directory-class, write-file, basic-save-buffer)
(delete-directory, copy-directory, recover-session)
(recover-session-finish, insert-directory)
(file-modes-char-to-who, file-modes-symbolic-to-number)
(move-file-to-trash):
* lisp/filesets.el (filesets-add-buffer, filesets-remove-buffer):
* lisp/find-cmd.el (find-generic, find-to-string):
* lisp/finder.el (finder-commentary):
* lisp/font-lock.el (font-lock-fontify-buffer):
* lisp/format.el (format-write-file, format-find-file)
(format-insert-file):
* lisp/frame.el (get-device-terminal, select-frame-by-name):
* lisp/fringe.el (fringe--check-style):
* lisp/gnus/nnmairix.el (nnmairix-widget-create-query):
* lisp/help-fns.el (help-fns--key-bindings)
(help-fns--compiler-macro, help-fns--parent-mode)
(help-fns--obsolete, help-fns--interactive-only)
(describe-function-1, describe-variable):
* lisp/help.el (describe-mode)
(describe-minor-mode-from-indicator):
* lisp/image.el (image-type):
* lisp/international/ccl.el (ccl-dump):
* lisp/international/fontset.el (x-must-resolve-font-name):
* lisp/international/mule-cmds.el (prefer-coding-system)
(select-safe-coding-system-interactively)
(select-safe-coding-system, activate-input-method)
(toggle-input-method, describe-current-input-method)
(describe-language-environment):
* lisp/international/mule-conf.el (code-offset):
* lisp/international/mule-diag.el (describe-character-set)
(list-input-methods-1):
* lisp/mail/feedmail.el (feedmail-run-the-queue):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc-playlist-rename):
* lisp/msb.el (msb--choose-menu):
* lisp/net/ange-ftp.el (ange-ftp-shell-command):
* lisp/net/imap.el (imap-interactive-login):
* lisp/net/mairix.el (mairix-widget-create-query):
* lisp/net/newst-backend.el (newsticker--sentinel-work):
* lisp/net/newst-treeview.el (newsticker--treeview-load):
* lisp/net/rlogin.el (rlogin):
* lisp/obsolete/iswitchb.el (iswitchb-possible-new-buffer):
* lisp/obsolete/otodo-mode.el (todo-more-important-p):
* lisp/obsolete/pgg-gpg.el (pgg-gpg-process-region):
* lisp/obsolete/pgg-pgp.el (pgg-pgp-process-region):
* lisp/obsolete/pgg-pgp5.el (pgg-pgp5-process-region):
* lisp/org/ob-core.el (org-babel-goto-named-src-block)
(org-babel-goto-named-result):
* lisp/org/ob-fortran.el (org-babel-fortran-ensure-main-wrap):
* lisp/org/ob-ref.el (org-babel-ref-resolve):
* lisp/org/org-agenda.el (org-agenda-prepare):
* lisp/org/org-clock.el (org-clock-notify-once-if-expired)
(org-clock-resolve):
* lisp/org/org-ctags.el (org-ctags-ask-rebuild-tags-file-then-find-tag):
* lisp/org/org-feed.el (org-feed-parse-atom-entry):
* lisp/org/org-habit.el (org-habit-parse-todo):
* lisp/org/org-mouse.el (org-mouse-popup-global-menu)
(org-mouse-context-menu):
* lisp/org/org-table.el (org-table-edit-formulas):
* lisp/org/ox.el (org-export-async-start):
* lisp/proced.el (proced-log):
* lisp/progmodes/ada-mode.el (ada-get-indent-case)
(ada-check-matching-start, ada-goto-matching-start):
* lisp/progmodes/ada-prj.el (ada-prj-display-page):
* lisp/progmodes/ada-xref.el (ada-find-executable):
* lisp/progmodes/ebrowse.el (ebrowse-tags-apropos):
* lisp/progmodes/etags.el (etags-tags-apropos-additional):
* lisp/progmodes/flymake.el (flymake-parse-err-lines)
(flymake-start-syntax-check-process):
* lisp/progmodes/python.el (python-shell-get-process-or-error)
(python-define-auxiliary-skeleton):
* lisp/progmodes/sql.el (sql-comint):
* lisp/progmodes/verilog-mode.el (verilog-load-file-at-point):
* lisp/progmodes/vhdl-mode.el (vhdl-widget-directory-validate):
* lisp/recentf.el (recentf-open-files):
* lisp/replace.el (query-replace-read-from)
(occur-after-change-function, occur-1):
* lisp/scroll-bar.el (scroll-bar-columns):
* lisp/server.el (server-get-auth-key):
* lisp/simple.el (execute-extended-command)
(undo-outer-limit-truncate, list-processes--refresh)
(compose-mail, set-variable, choose-completion-string)
(define-alternatives):
* lisp/startup.el (site-run-file, tty-handle-args, command-line)
(command-line-1):
* lisp/subr.el (noreturn, define-error, add-to-list)
(read-char-choice, version-to-list):
* lisp/term/common-win.el (x-handle-xrm-switch)
(x-handle-name-switch, x-handle-args):
* lisp/term/x-win.el (x-handle-parent-id, x-handle-smid):
* lisp/textmodes/reftex-ref.el (reftex-label):
* lisp/textmodes/reftex-toc.el (reftex-toc-rename-label):
* lisp/textmodes/two-column.el (2C-split):
* lisp/tutorial.el (tutorial--describe-nonstandard-key)
(tutorial--find-changed-keys):
* lisp/type-break.el (type-break-noninteractive-query):
* lisp/wdired.el (wdired-do-renames, wdired-do-symlink-changes)
(wdired-do-perm-changes):
* lisp/whitespace.el (whitespace-report-region):
Prefer grave quoting in source-code strings used to generate help
and diagnostics.
* lisp/faces.el (face-documentation):
No need to convert quotes, since the result is a docstring.
* lisp/info.el (Info-virtual-index-find-node)
(Info-virtual-index, info-apropos):
Simplify by generating only curved quotes, since info files are
typically that ways nowadays anyway.
* lisp/international/mule-diag.el (list-input-methods):
Don’t assume text quoting style is curved.
* lisp/org/org-bibtex.el (org-bibtex-fields):
Revert my recent changes, going back to the old quoting style.
2015-09-07 15:41:44 +00:00
|
|
|
|
(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
|
2019-11-19 10:47:19 +00:00
|
|
|
|
(or (image-type-from-data source)
|
|
|
|
|
(and image-use-external-converter
|
|
|
|
|
(progn
|
|
|
|
|
(require 'image-converter)
|
|
|
|
|
(image-convert-p source data-p))))
|
2007-05-21 16:43:13 +00:00
|
|
|
|
(or (image-type-from-file-header source)
|
2022-03-22 14:02:08 +00:00
|
|
|
|
(image-supported-file-p source)
|
2019-09-30 04:00:52 +00:00
|
|
|
|
(and image-use-external-converter
|
2019-09-28 23:26:02 +00:00
|
|
|
|
(progn
|
|
|
|
|
(require 'image-converter)
|
|
|
|
|
(image-convert-p source))))))
|
|
|
|
|
(unless type
|
2023-01-03 13:03:58 +00:00
|
|
|
|
(signal 'unknown-image-type '("Cannot determine image type"))))
|
2019-09-28 23:26:02 +00:00
|
|
|
|
(when (and (not (eq type 'image-convert))
|
|
|
|
|
(not (memq type (and (boundp 'image-types) image-types))))
|
|
|
|
|
(error "Invalid image type `%s'" type))
|
2006-04-21 20:56:06 +00:00
|
|
|
|
type)
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun image-type-available-p (type)
|
2019-10-17 00:45:06 +00:00
|
|
|
|
"Return t if image type TYPE is available.
|
2006-04-21 20:56:06 +00:00
|
|
|
|
Image types are symbols like `xbm' or `jpeg'."
|
|
|
|
|
(and (fboundp 'init-image-library)
|
2012-09-23 09:16:57 +00:00
|
|
|
|
(init-image-library type)))
|
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
|
|
|
|
|
2022-03-21 16:51:21 +00:00
|
|
|
|
(defvar image-convert-to-format)
|
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)
|
2022-09-28 19:03:27 +00:00
|
|
|
|
"Create an image from FILE-OR-DATA.
|
|
|
|
|
FILE-OR-DATA is an image file name or image data. If it is a relative
|
|
|
|
|
file name, the function will look for it along `image-load-path'.
|
2019-01-15 16:00:04 +00:00
|
|
|
|
|
2006-04-21 20:56:06 +00:00
|
|
|
|
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.
|
2019-01-15 16:00:04 +00:00
|
|
|
|
|
2006-04-21 20:56:06 +00:00
|
|
|
|
Optional DATA-P non-nil means FILE-OR-DATA is a string containing image data.
|
2019-01-15 16:00:04 +00:00
|
|
|
|
|
2006-04-21 20:56:06 +00:00
|
|
|
|
Optional PROPS are additional image attributes to assign to the image,
|
2019-01-15 16:00:04 +00:00
|
|
|
|
like, e.g. `:mask MASK'. If the property `:scale' is not given and the
|
|
|
|
|
display has a high resolution (more exactly, when the average width of a
|
|
|
|
|
character in the default font is more than 10 pixels), the image is
|
|
|
|
|
automatically scaled up in proportion to the default font.
|
|
|
|
|
|
2006-04-21 20:56:06 +00:00
|
|
|
|
Value is the image created, or nil if images of type TYPE are not supported.
|
|
|
|
|
|
2022-09-29 13:27:59 +00:00
|
|
|
|
Images should not be larger than specified by `max-image-size'."
|
2019-11-19 10:47:19 +00:00
|
|
|
|
(let ((data-format
|
|
|
|
|
;; Pass the image format, if any, if this is data.
|
|
|
|
|
(and data-p (or (plist-get props :format) t))))
|
|
|
|
|
;; It is x_find_image_file in image.c that sets the search path.
|
|
|
|
|
(setq type (ignore-error unknown-image-type
|
|
|
|
|
(image-type file-or-data type data-format)))
|
|
|
|
|
;; If we have external image conversion switched on (for exotic,
|
|
|
|
|
;; non-native image formats), then we convert the file.
|
|
|
|
|
(when (eq type 'image-convert)
|
2019-11-21 13:02:00 +00:00
|
|
|
|
(require 'image-converter)
|
2019-11-19 10:47:19 +00:00
|
|
|
|
(setq file-or-data (image-convert file-or-data data-format)
|
2022-03-21 16:51:21 +00:00
|
|
|
|
type (intern image-convert-to-format)
|
2019-11-19 10:47:19 +00:00
|
|
|
|
data-p t)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(when (image-type-available-p type)
|
2021-03-12 01:37:10 +00:00
|
|
|
|
(let ((image
|
|
|
|
|
(append (list 'image :type type (if data-p :data :file)
|
|
|
|
|
file-or-data)
|
|
|
|
|
(and (not (plist-get props :scale))
|
|
|
|
|
;; Add default scaling.
|
|
|
|
|
(list :scale
|
|
|
|
|
(image-compute-scaling-factor
|
|
|
|
|
image-scaling-factor)))
|
|
|
|
|
props)))
|
|
|
|
|
;; Add default smoothing.
|
|
|
|
|
(unless (plist-member props :transform-smoothing)
|
|
|
|
|
(setq image (nconc image
|
|
|
|
|
(list :transform-smoothing
|
|
|
|
|
(pcase image-transform-smoothing
|
|
|
|
|
('t t)
|
|
|
|
|
('nil nil)
|
|
|
|
|
(func (funcall func image)))))))
|
|
|
|
|
image)))
|
|
|
|
|
|
|
|
|
|
(defun image--default-smoothing (image)
|
|
|
|
|
"Say whether IMAGE should be smoothed when transformed."
|
|
|
|
|
(let* ((props (nthcdr 5 image))
|
|
|
|
|
(scaling (plist-get props :scale))
|
|
|
|
|
(rotation (plist-get props :rotation)))
|
|
|
|
|
(cond
|
|
|
|
|
;; We always smooth when scaling down and small upwards scaling.
|
|
|
|
|
((and scaling (< scaling 2))
|
|
|
|
|
t)
|
|
|
|
|
;; Smooth when doing non-90-degree rotation
|
|
|
|
|
((and rotation
|
|
|
|
|
(or (not (zerop (mod rotation 1)))
|
|
|
|
|
(not (zerop (% (truncate rotation) 90)))))
|
|
|
|
|
t)
|
|
|
|
|
(t nil))))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2016-02-22 01:50:40 +00:00
|
|
|
|
(defun image--set-property (image property value)
|
2016-02-20 06:54:05 +00:00
|
|
|
|
"Set PROPERTY in IMAGE to VALUE.
|
2016-02-22 01:50:40 +00:00
|
|
|
|
Internal use only."
|
2016-02-20 06:54:05 +00:00
|
|
|
|
(if (null value)
|
|
|
|
|
(while (cdr image)
|
|
|
|
|
;; IMAGE starts with the symbol `image', and the rest is a
|
|
|
|
|
;; plist. Decouple plist entries where the key matches
|
|
|
|
|
;; the property.
|
|
|
|
|
(if (eq (cadr image) property)
|
2019-04-17 13:24:31 +00:00
|
|
|
|
(setcdr image (cdddr image))
|
2016-02-20 06:54:05 +00:00
|
|
|
|
(setq image (cddr image))))
|
|
|
|
|
;; Just enter the new value.
|
2019-04-17 13:24:31 +00:00
|
|
|
|
(setcdr image (plist-put (cdr image) property value)))
|
2016-02-23 01:26:30 +00:00
|
|
|
|
value)
|
2016-02-20 06:54:05 +00:00
|
|
|
|
|
2016-02-22 01:50:40 +00:00
|
|
|
|
(defun image-property (image property)
|
|
|
|
|
"Return the value of PROPERTY in IMAGE.
|
|
|
|
|
Properties can be set with
|
|
|
|
|
|
|
|
|
|
(setf (image-property IMAGE PROPERTY) VALUE)
|
|
|
|
|
If VALUE is nil, PROPERTY is removed from IMAGE."
|
|
|
|
|
(declare (gv-setter image--set-property))
|
2016-02-20 06:54:05 +00:00
|
|
|
|
(plist-get (cdr image) property))
|
|
|
|
|
|
2021-11-09 04:55:32 +00:00
|
|
|
|
(defun image-compute-scaling-factor (&optional scaling)
|
|
|
|
|
"Compute the scaling factor based on SCALING.
|
|
|
|
|
If a number, use that. If it's `auto', compute the factor.
|
|
|
|
|
If nil, use the `image-scaling-factor' variable."
|
|
|
|
|
(unless scaling
|
|
|
|
|
(setq scaling image-scaling-factor))
|
2016-02-08 07:22:53 +00:00
|
|
|
|
(cond
|
2016-05-23 19:12:24 +00:00
|
|
|
|
((numberp scaling) scaling)
|
|
|
|
|
((eq scaling 'auto)
|
2016-02-08 07:22:53 +00:00
|
|
|
|
(let ((width (/ (float (window-width nil t)) (window-width))))
|
|
|
|
|
;; If we assume that a typical character is 10 pixels in width,
|
|
|
|
|
;; then we should scale all images according to how wide they
|
|
|
|
|
;; are. But don't scale images down.
|
|
|
|
|
(if (< width 10)
|
|
|
|
|
1
|
|
|
|
|
(/ (float width) 10))))
|
|
|
|
|
(t
|
2016-05-23 19:12:24 +00:00
|
|
|
|
(error "Invalid scaling factor %s" scaling))))
|
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
|
2023-04-03 16:32:46 +00:00
|
|
|
|
image. STRING defaults to \"x\" if it's nil or omitted.
|
|
|
|
|
The overlay created by this function has 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)
|
2022-07-14 17:33:34 +00:00
|
|
|
|
(overlay-put overlay 'keymap image-map)
|
2012-04-10 02:34:57 +00:00
|
|
|
|
overlay)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
2021-11-06 04:18:32 +00:00
|
|
|
|
(defun insert-image (image &optional string area slice inhibit-isearch)
|
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
|
2021-04-04 19:47:38 +00:00
|
|
|
|
with a `display' property whose value is the image.
|
|
|
|
|
|
|
|
|
|
STRING defaults to a single space if you omit it, which means
|
|
|
|
|
that the inserted image will behave as whitespace syntactically.
|
|
|
|
|
|
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.
|
2021-04-04 19:47:38 +00:00
|
|
|
|
|
2004-04-20 22:23:08 +00:00
|
|
|
|
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
|
2021-11-06 04:18:32 +00:00
|
|
|
|
height of the image; integer values are taken as pixel values.
|
|
|
|
|
|
|
|
|
|
Normally `isearch' is able to search for STRING in the buffer
|
|
|
|
|
even if it's hidden behind a displayed image. If INHIBIT-ISEARCH
|
|
|
|
|
is non-nil, this is inhibited."
|
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)
|
2016-02-10 01:03:55 +00:00
|
|
|
|
image)
|
2019-07-28 20:48:18 +00:00
|
|
|
|
rear-nonsticky t
|
2021-11-06 04:18:32 +00:00
|
|
|
|
inhibit-isearch ,inhibit-isearch
|
2023-04-08 09:43:34 +00:00
|
|
|
|
keymap ,(if slice
|
|
|
|
|
image-slice-map
|
|
|
|
|
image-map)))))
|
2004-04-20 22:23:08 +00:00
|
|
|
|
|
|
|
|
|
|
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
|
2012-11-18 01:43:32 +00:00
|
|
|
|
with a `display' property whose value is the image. The default
|
|
|
|
|
STRING is a single space.
|
2004-09-22 23:12:38 +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'
|
|
|
|
|
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)
|
2023-04-08 09:43:34 +00:00
|
|
|
|
rear-nonsticky (display keymap)
|
|
|
|
|
keymap ,image-slice-map))
|
2004-04-20 22:23:08 +00:00
|
|
|
|
(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
|
|
|
|
|
2020-12-08 12:57:44 +00:00
|
|
|
|
(defvar find-image--cache (make-hash-table :test #'equal))
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
;;;###autoload
|
2020-12-08 12:57:44 +00:00
|
|
|
|
(defun find-image (specs &optional cache)
|
2000-04-26 17:34:09 +00:00
|
|
|
|
"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
|
2022-06-20 12:42:48 +00:00
|
|
|
|
least contain either the property `:file FILE' or `:data DATA',
|
2022-06-20 09:39:56 +00:00
|
|
|
|
where FILE is the file to load the image from, and DATA is a string
|
|
|
|
|
containing the actual image data. If the property `:type TYPE' is
|
|
|
|
|
omitted or nil, try to determine the image type from its first few
|
2022-06-20 12:42:48 +00:00
|
|
|
|
bytes of image data. If that doesn't work, and the property `:file
|
|
|
|
|
FILE' provide a file name, use its file extension as image type.
|
|
|
|
|
If `:type TYPE' is provided, it must match the actual type
|
2022-06-20 09:39:56 +00:00
|
|
|
|
determined for FILE or DATA by `create-image'. Return nil if no
|
|
|
|
|
specification is satisfied.
|
2000-06-06 14:27:42 +00:00
|
|
|
|
|
2020-12-08 12:57:44 +00:00
|
|
|
|
If CACHE is non-nil, results are cached and returned on subsequent calls.
|
|
|
|
|
|
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'."
|
2020-12-08 12:57:44 +00:00
|
|
|
|
(or (and cache
|
|
|
|
|
(gethash specs find-image--cache))
|
|
|
|
|
(let ((orig-specs specs)
|
|
|
|
|
image)
|
|
|
|
|
(while (and specs (null image))
|
|
|
|
|
(let* ((spec (car specs))
|
|
|
|
|
(type (plist-get spec :type))
|
|
|
|
|
(data (plist-get spec :data))
|
2022-06-20 09:39:56 +00:00
|
|
|
|
(file (plist-get spec :file)))
|
|
|
|
|
(cond
|
|
|
|
|
((stringp file)
|
|
|
|
|
(when (setq file (image-search-load-path file))
|
|
|
|
|
;; At this point, remove the :type and :file properties.
|
|
|
|
|
;; `create-image' will set them depending on image file.
|
|
|
|
|
(setq image (cons 'image (copy-sequence spec)))
|
|
|
|
|
(setf (image-property image :type) nil)
|
|
|
|
|
(setf (image-property image :file) nil)
|
|
|
|
|
(and (setq image (ignore-errors
|
|
|
|
|
(apply #'create-image file nil nil
|
|
|
|
|
(cdr image))))
|
|
|
|
|
;; Ensure, if a type has been provided, it is
|
|
|
|
|
;; consistent with the type returned by
|
|
|
|
|
;; `create-image'. If not, return nil.
|
|
|
|
|
(not (null type))
|
|
|
|
|
(not (eq type (image-property image :type)))
|
|
|
|
|
(setq image nil))))
|
|
|
|
|
((not (null data))
|
|
|
|
|
;; At this point, remove the :type and :data properties.
|
|
|
|
|
;; `create-image' will set them depending on image data.
|
|
|
|
|
(setq image (cons 'image (copy-sequence spec)))
|
|
|
|
|
(setf (image-property image :type) nil)
|
|
|
|
|
(setf (image-property image :data) nil)
|
|
|
|
|
(and (setq image (ignore-errors
|
|
|
|
|
(apply #'create-image data nil t
|
|
|
|
|
(cdr image))))
|
|
|
|
|
;; Ensure, if a type has been provided, it is
|
|
|
|
|
;; consistent with the type returned by
|
|
|
|
|
;; `create-image'. If not, return nil.
|
|
|
|
|
(not (null type))
|
|
|
|
|
(not (eq type (image-property image :type)))
|
|
|
|
|
(setq image nil))))
|
2020-12-08 12:57:44 +00:00
|
|
|
|
(setq specs (cdr specs))))
|
|
|
|
|
(when cache
|
|
|
|
|
(setf (gethash orig-specs find-image--cache) image))
|
|
|
|
|
image)))
|
2000-04-26 17:34:09 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defmacro defimage (symbol specs &optional doc)
|
2013-10-27 22:53:48 +00:00
|
|
|
|
"Define SYMBOL as an image, and return SYMBOL.
|
2000-04-26 17:34:09 +00:00
|
|
|
|
|
|
|
|
|
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\")))"
|
2021-10-13 19:52:50 +00:00
|
|
|
|
(declare (doc-string 3) (indent defun))
|
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
|
|
|
|
|
2013-02-16 03:39:12 +00:00
|
|
|
|
(defvar image-default-frame-delay 0.1
|
|
|
|
|
"Default interval in seconds between frames of a multi-frame image.
|
|
|
|
|
Only used if the image does not specify a value.")
|
|
|
|
|
|
2013-02-16 19:56:50 +00:00
|
|
|
|
(defun image-multi-frame-p (image)
|
|
|
|
|
"Return non-nil if IMAGE contains more than one frame.
|
|
|
|
|
The actual return value is a cons (NIMAGES . DELAY), where NIMAGES is
|
|
|
|
|
the number of frames (or sub-images) in the image and DELAY is the delay
|
|
|
|
|
in seconds that the image specifies between each frame. DELAY may be nil,
|
|
|
|
|
in which case you might want to use `image-default-frame-delay'."
|
2013-09-18 04:26:19 +00:00
|
|
|
|
(when (fboundp 'image-metadata)
|
|
|
|
|
(let* ((metadata (image-metadata image))
|
|
|
|
|
(images (plist-get metadata 'count))
|
|
|
|
|
(delay (plist-get metadata 'delay)))
|
|
|
|
|
(when (and images (> images 1))
|
2014-09-14 23:59:57 +00:00
|
|
|
|
(and delay (or (not (numberp delay)) (< delay 0))
|
|
|
|
|
(setq delay image-default-frame-delay))
|
2013-09-18 04:26:19 +00:00
|
|
|
|
(cons images delay)))))
|
2013-02-16 19:56:50 +00:00
|
|
|
|
|
2013-05-30 03:24:30 +00:00
|
|
|
|
(defun image-animated-p (image)
|
2021-09-14 06:43:18 +00:00
|
|
|
|
"Like `image-multi-frame-p', but return nil if no delay is specified."
|
2013-05-30 03:24:30 +00:00
|
|
|
|
(let ((multi (image-multi-frame-p image)))
|
|
|
|
|
(and (cdr multi) multi)))
|
|
|
|
|
|
|
|
|
|
(make-obsolete 'image-animated-p 'image-multi-frame-p "24.4")
|
2010-03-07 19:02:20 +00:00
|
|
|
|
|
2021-11-12 02:27:23 +00:00
|
|
|
|
(defun image-animate (image &optional index limit position)
|
2011-06-07 18:32:12 +00:00
|
|
|
|
"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
|
2021-11-12 02:27:23 +00:00
|
|
|
|
number, play until that number of seconds has elapsed.
|
|
|
|
|
|
|
|
|
|
If POSITION (which should be buffer position where the image is
|
|
|
|
|
displayed), stop the animation if the image is no longer
|
|
|
|
|
displayed."
|
2013-02-16 19:56:50 +00:00
|
|
|
|
(let ((animation (image-multi-frame-p image))
|
2011-06-11 23:03:16 +00:00
|
|
|
|
timer)
|
|
|
|
|
(when animation
|
2011-06-07 18:32:12 +00:00
|
|
|
|
(if (setq timer (image-animate-timer image))
|
|
|
|
|
(cancel-timer timer))
|
2014-02-25 21:59:14 +00:00
|
|
|
|
(plist-put (cdr image) :animate-buffer (current-buffer))
|
2020-07-29 06:38:52 +00:00
|
|
|
|
(plist-put (cdr image) :animate-tardiness 0)
|
2021-11-12 02:27:23 +00:00
|
|
|
|
(when position
|
|
|
|
|
(plist-put (cdr image) :animate-position
|
|
|
|
|
(set-marker (make-marker) position (current-buffer))))
|
2021-05-03 09:45:22 +00:00
|
|
|
|
;; Stash the data about the animation here so that we don't
|
|
|
|
|
;; trigger image recomputation unnecessarily later.
|
|
|
|
|
(plist-put (cdr image) :animate-multi-frame-data animation)
|
2016-05-23 19:12:24 +00:00
|
|
|
|
(run-with-timer 0.2 nil #'image-animate-timeout
|
2011-06-11 23:03:16 +00:00
|
|
|
|
image (or index 0) (car animation)
|
2016-05-03 23:37:01 +00:00
|
|
|
|
0 limit (+ (float-time) 0.2)))))
|
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))
|
2016-05-23 19:12:24 +00:00
|
|
|
|
(if (and (eq (timer--function timer) #'image-animate-timeout)
|
2012-09-13 06:09:45 +00:00
|
|
|
|
(eq (car-safe (timer--args timer)) image))
|
2010-03-07 19:02:20 +00:00
|
|
|
|
(setq tail nil)
|
|
|
|
|
(setq timer nil)))
|
|
|
|
|
timer))
|
|
|
|
|
|
2013-02-16 03:39:12 +00:00
|
|
|
|
(defconst image-minimum-frame-delay 0.01
|
|
|
|
|
"Minimum interval in seconds between frames of an animated image.")
|
|
|
|
|
|
2013-02-20 07:57:33 +00:00
|
|
|
|
(defun image-current-frame (image)
|
|
|
|
|
"The current frame number of IMAGE, indexed from 0."
|
|
|
|
|
(or (plist-get (cdr image) :index) 0))
|
2013-02-16 01:58:20 +00:00
|
|
|
|
|
2013-02-20 07:57:33 +00:00
|
|
|
|
(defun image-show-frame (image n &optional nocheck)
|
2013-02-16 03:29:39 +00:00
|
|
|
|
"Show frame N of IMAGE.
|
|
|
|
|
Frames are indexed from 0. Optional argument NOCHECK non-nil means
|
|
|
|
|
do not check N is within the range of frames present in the image."
|
|
|
|
|
(unless nocheck
|
|
|
|
|
(if (< n 0) (setq n 0)
|
2022-01-24 10:22:49 +00:00
|
|
|
|
(setq n (min n (1- (car (or (plist-get (cdr image)
|
|
|
|
|
:animate-multi-frame-data)
|
|
|
|
|
(image-multi-frame-p image))))))))
|
2013-02-16 03:29:39 +00:00
|
|
|
|
(plist-put (cdr image) :index n)
|
2021-05-04 07:57:30 +00:00
|
|
|
|
(force-window-update (plist-get (cdr image) :animate-buffer)))
|
2013-02-16 03:29:39 +00:00
|
|
|
|
|
2013-08-16 06:33:08 +00:00
|
|
|
|
(defun image-animate-get-speed (image)
|
|
|
|
|
"Return the speed factor for animating IMAGE."
|
|
|
|
|
(or (plist-get (cdr image) :speed) 1))
|
|
|
|
|
|
|
|
|
|
(defun image-animate-set-speed (image value &optional multiply)
|
|
|
|
|
"Set the speed factor for animating IMAGE to VALUE.
|
|
|
|
|
With optional argument MULTIPLY non-nil, treat VALUE as a
|
|
|
|
|
multiplication factor for the current value."
|
|
|
|
|
(plist-put (cdr image) :speed
|
|
|
|
|
(if multiply
|
|
|
|
|
(* value (image-animate-get-speed image))
|
|
|
|
|
value)))
|
|
|
|
|
|
2012-02-03 08:44:30 +00:00
|
|
|
|
;; FIXME? The delay may not be the same for different sub-images,
|
2013-02-16 19:56:50 +00:00
|
|
|
|
;; hence we need to call image-multi-frame-p to return it.
|
2012-02-03 08:44:30 +00:00
|
|
|
|
;; But it also returns count, so why do we bother passing that as an
|
|
|
|
|
;; argument?
|
2016-05-03 23:37:01 +00:00
|
|
|
|
(defun image-animate-timeout (image n count time-elapsed limit target-time)
|
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
|
2020-09-23 11:35:55 +00:00
|
|
|
|
`image-animate' 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.
|
2013-08-16 06:33:08 +00:00
|
|
|
|
The minimum delay between successive frames is `image-minimum-frame-delay'.
|
|
|
|
|
|
|
|
|
|
If the image has a non-nil :speed property, it acts as a multiplier
|
|
|
|
|
for the animation speed. A negative value means to animate in reverse."
|
2020-07-29 06:38:52 +00:00
|
|
|
|
;; We keep track of "how late" image frames arrive. We decay the
|
|
|
|
|
;; previous cumulative value by 10% and then add the current delay.
|
|
|
|
|
(plist-put (cdr image) :animate-tardiness
|
|
|
|
|
(+ (* (plist-get (cdr image) :animate-tardiness) 0.9)
|
|
|
|
|
(float-time (time-since target-time))))
|
2022-07-14 16:58:12 +00:00
|
|
|
|
(let* ((buffer (plist-get (cdr image) :animate-buffer))
|
|
|
|
|
(position (plist-get (cdr image) :animate-position))
|
|
|
|
|
(continue-animation
|
|
|
|
|
(and (buffer-live-p buffer)
|
2021-11-12 02:27:23 +00:00
|
|
|
|
;; If we have a :animate-position setting, the caller
|
|
|
|
|
;; has requested that the animation be stopped if the
|
|
|
|
|
;; image is no longer displayed in the buffer.
|
|
|
|
|
(or (null position)
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(let ((disp (get-text-property position 'display)))
|
|
|
|
|
(and (consp disp)
|
|
|
|
|
(eq (car disp) 'image)
|
|
|
|
|
;; We can't check `eq'-ness of the image
|
|
|
|
|
;; itself, since that may change.
|
|
|
|
|
(eq position
|
|
|
|
|
(plist-get (cdr disp) :animate-position))))))
|
|
|
|
|
;; Cumulatively delayed two seconds more than expected.
|
|
|
|
|
(or (< (plist-get (cdr image) :animate-tardiness) 2)
|
|
|
|
|
(progn
|
|
|
|
|
(message "Stopping animation; animation possibly too big")
|
2022-07-14 16:58:12 +00:00
|
|
|
|
nil)))))
|
|
|
|
|
(if (not continue-animation)
|
|
|
|
|
;; Eject from the animation cache since we've decided not to
|
|
|
|
|
;; keep updating it. This helps stop unbounded RAM usage when
|
|
|
|
|
;; doing, for instance, `g' in an eww buffer with animated
|
|
|
|
|
;; images.
|
|
|
|
|
(clear-image-cache nil image)
|
2021-12-06 03:30:27 +00:00
|
|
|
|
(let* ((time (prog1 (current-time)
|
|
|
|
|
(image-show-frame image n t)))
|
|
|
|
|
(speed (image-animate-get-speed image))
|
2021-11-12 02:27:23 +00:00
|
|
|
|
(time-to-load-image (time-since time))
|
|
|
|
|
(stated-delay-time
|
|
|
|
|
(/ (or (cdr (plist-get (cdr image) :animate-multi-frame-data))
|
|
|
|
|
image-default-frame-delay)
|
|
|
|
|
(float (abs speed))))
|
|
|
|
|
;; Subtract off the time we took to load the image from the
|
|
|
|
|
;; stated delay time.
|
|
|
|
|
(delay (max (float-time (time-subtract stated-delay-time
|
|
|
|
|
time-to-load-image))
|
|
|
|
|
image-minimum-frame-delay))
|
|
|
|
|
done)
|
|
|
|
|
(setq n (if (< speed 0)
|
|
|
|
|
(1- n)
|
|
|
|
|
(1+ n)))
|
|
|
|
|
(if limit
|
|
|
|
|
(cond ((>= n count) (setq n 0))
|
|
|
|
|
((< n 0) (setq n (1- count))))
|
|
|
|
|
(and (or (>= n count) (< n 0)) (setq done t)))
|
|
|
|
|
(setq time-elapsed (+ delay time-elapsed))
|
|
|
|
|
(if (numberp limit)
|
|
|
|
|
(setq done (>= time-elapsed limit)))
|
|
|
|
|
(unless done
|
|
|
|
|
(run-with-timer delay nil #'image-animate-timeout
|
|
|
|
|
image n count time-elapsed limit
|
|
|
|
|
(+ (float-time) delay)))))))
|
2010-03-07 19:02:20 +00:00
|
|
|
|
|
|
|
|
|
|
2012-05-31 17:14:46 +00:00
|
|
|
|
(defvar imagemagick-types-inhibit)
|
2012-06-02 07:30:07 +00:00
|
|
|
|
(defvar imagemagick-enabled-types)
|
2012-05-31 17:14:46 +00:00
|
|
|
|
|
|
|
|
|
(defun imagemagick-filter-types ()
|
|
|
|
|
"Return a list of the ImageMagick types to be treated as images, or nil.
|
|
|
|
|
This is the result of `imagemagick-types', including only elements
|
2012-06-02 07:30:07 +00:00
|
|
|
|
that match `imagemagick-enabled-types' and do not match
|
2012-05-31 17:14:46 +00:00
|
|
|
|
`imagemagick-types-inhibit'."
|
|
|
|
|
(when (fboundp 'imagemagick-types)
|
2012-06-02 07:30:07 +00:00
|
|
|
|
(cond ((null imagemagick-enabled-types) nil)
|
2012-05-31 17:14:46 +00:00
|
|
|
|
((eq imagemagick-types-inhibit t) nil)
|
|
|
|
|
(t
|
|
|
|
|
(delq nil
|
|
|
|
|
(mapcar
|
|
|
|
|
(lambda (type)
|
|
|
|
|
(unless (memq type imagemagick-types-inhibit)
|
2012-06-02 07:30:07 +00:00
|
|
|
|
(if (eq imagemagick-enabled-types t) type
|
2012-05-31 17:21:31 +00:00
|
|
|
|
(catch 'found
|
2012-06-02 07:30:07 +00:00
|
|
|
|
(dolist (enable imagemagick-enabled-types nil)
|
2012-05-31 17:21:31 +00:00
|
|
|
|
(if (cond ((symbolp enable) (eq enable type))
|
|
|
|
|
((stringp enable)
|
|
|
|
|
(string-match enable
|
|
|
|
|
(symbol-name type))))
|
|
|
|
|
(throw 'found type)))))))
|
2012-05-31 17:14:46 +00:00
|
|
|
|
(imagemagick-types)))))))
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
;;;###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 17:14:46 +00:00
|
|
|
|
It registers the ImageMagick types returned by `imagemagick-filter-types'.
|
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 17:14:46 +00:00
|
|
|
|
(let* ((types (mapcar (lambda (type) (downcase (symbol-name type)))
|
|
|
|
|
(imagemagick-filter-types)))
|
|
|
|
|
(re (if types (concat "\\." (regexp-opt types) "\\'")))
|
2012-05-31 07:22:33 +00:00
|
|
|
|
(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)
|
2012-06-11 10:16:47 +00:00
|
|
|
|
;; Append to `image-type-file-name-regexps', so that we
|
|
|
|
|
;; preferentially use specialized image libraries.
|
|
|
|
|
(add-to-list 'image-type-file-name-regexps
|
|
|
|
|
(cons re 'imagemagick) t)))
|
2012-04-16 03:47:43 +00:00
|
|
|
|
(setq imagemagick--file-regexp re))))
|
|
|
|
|
|
2012-06-04 13:01:17 +00:00
|
|
|
|
(defcustom imagemagick-types-inhibit
|
|
|
|
|
'(C HTML HTM INFO M TXT PDF)
|
2012-06-02 07:30:07 +00:00
|
|
|
|
"List of ImageMagick types that should never be treated as images.
|
2012-04-16 03:47:43 +00:00
|
|
|
|
This should be a list of symbols, each of which should be one of
|
2012-06-02 07:30:07 +00:00
|
|
|
|
the ImageMagick types listed by `imagemagick-types'. The listed
|
2012-04-16 03:47:43 +00:00
|
|
|
|
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))
|
2016-05-23 19:12:24 +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))
|
2016-05-23 19:12:24 +00:00
|
|
|
|
:version "24.3")
|
2010-04-02 21:09:13 +00:00
|
|
|
|
|
2012-06-02 07:30:07 +00:00
|
|
|
|
(defcustom imagemagick-enabled-types
|
2019-02-20 06:04:19 +00:00
|
|
|
|
'(3FR ARW AVS BMP BMP2 BMP3 CAL CALS CMYK CMYKA CR2 CRW
|
2012-06-04 13:01:17 +00:00
|
|
|
|
CUR CUT DCM DCR DCX DDS DJVU DNG DPX EXR FAX FITS GBR GIF
|
|
|
|
|
GIF87 GRB HRZ ICB ICO ICON J2C JNG JP2 JPC JPEG JPG JPX K25
|
|
|
|
|
KDC MIFF MNG MRW MSL MSVG MTV NEF ORF OTB PBM PCD PCDS PCL
|
|
|
|
|
PCT PCX PDB PEF PGM PICT PIX PJPEG PNG PNG24 PNG32 PNG8 PNM
|
|
|
|
|
PPM PSD PTIF PWP RAF RAS RBG RGB RGBA RGBO RLA RLE SCR SCT
|
|
|
|
|
SFW SGI SR2 SRF SUN SVG SVGZ TGA TIFF TIFF64 TILE TIM TTF
|
|
|
|
|
UYVY VDA VICAR VID VIFF VST WBMP WPG X3F XBM XC XCF XPM XV
|
|
|
|
|
XWD YCbCr YCbCrA YUV)
|
2012-05-31 07:22:33 +00:00
|
|
|
|
"List of ImageMagick types to treat as images.
|
2012-06-02 07:30:07 +00:00
|
|
|
|
Each list element should be a string or symbol, representing one
|
|
|
|
|
of the image types returned by `imagemagick-types'. If the
|
|
|
|
|
element is a string, it is handled as a regexp that enables all
|
|
|
|
|
matching types.
|
2012-05-31 07:22:33 +00:00
|
|
|
|
|
2012-06-02 07:30:07 +00:00
|
|
|
|
The value of `imagemagick-enabled-types' may also be t, meaning
|
|
|
|
|
to enable all types that ImageMagick supports.
|
2012-05-31 07:22:33 +00:00
|
|
|
|
|
|
|
|
|
The variable `imagemagick-types-inhibit' overrides this variable.
|
|
|
|
|
|
2012-10-22 21:53:03 +00:00
|
|
|
|
If you change this without using customize, you must call
|
2012-05-31 07:22:33 +00:00
|
|
|
|
`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"))))
|
2016-05-23 19:12:24 +00:00
|
|
|
|
:initialize #'custom-initialize-default
|
2012-05-31 07:22:33 +00:00
|
|
|
|
:set (lambda (symbol value)
|
|
|
|
|
(set-default symbol value)
|
|
|
|
|
(imagemagick-register-types))
|
2019-02-20 06:04:19 +00:00
|
|
|
|
:version "26.2") ; remove ART (bug#22289)
|
2012-05-31 07:22:33 +00:00
|
|
|
|
|
|
|
|
|
(imagemagick-register-types)
|
|
|
|
|
|
2022-10-04 13:09:33 +00:00
|
|
|
|
(defvar-keymap image--repeat-map
|
|
|
|
|
"+" #'image-increase-size
|
|
|
|
|
"-" #'image-decrease-size
|
|
|
|
|
"r" #'image-rotate)
|
|
|
|
|
|
2019-11-30 21:21:00 +00:00
|
|
|
|
(defun image-increase-size (&optional n position)
|
2023-04-06 09:35:17 +00:00
|
|
|
|
"Increase the image size at POSITION by a factor specified by N.
|
|
|
|
|
If N is 3, then the image size will be increased by 30%. More
|
|
|
|
|
generally, the image size is multiplied by 1 plus N divided by 10.
|
|
|
|
|
N defaults to 2, which increases the image size by 20%.
|
|
|
|
|
POSITION can be a buffer position or a marker, and defaults to point."
|
2016-02-09 01:44:32 +00:00
|
|
|
|
(interactive "P")
|
2022-10-04 13:09:33 +00:00
|
|
|
|
(image--delayed-change-size (if n
|
|
|
|
|
(1+ (/ (prefix-numeric-value n) 10.0))
|
|
|
|
|
1.2)
|
|
|
|
|
position)
|
|
|
|
|
(set-transient-map image--repeat-map nil nil
|
|
|
|
|
"Use %k for further adjustments"))
|
|
|
|
|
|
|
|
|
|
(defun image--delayed-change-size (size position)
|
2019-11-30 21:16:03 +00:00
|
|
|
|
;; Wait for a bit of idle-time before actually performing the change,
|
|
|
|
|
;; so as to batch together sequences of closely consecutive size changes.
|
|
|
|
|
;; `image--change-size' just changes one value in a plist. The actual
|
|
|
|
|
;; image resizing happens later during redisplay. So if those
|
|
|
|
|
;; consecutive calls happen without any redisplay between them,
|
|
|
|
|
;; the costly operation of image resizing should happen only once.
|
2022-10-04 13:09:33 +00:00
|
|
|
|
(run-with-idle-timer 0.3 nil #'image--change-size size position))
|
2016-02-09 01:44:32 +00:00
|
|
|
|
|
2019-11-30 21:21:00 +00:00
|
|
|
|
(defun image-decrease-size (&optional n position)
|
2023-04-06 09:35:17 +00:00
|
|
|
|
"Decrease the image size at POSITION by a factor specified by N.
|
|
|
|
|
If N is 3, then the image size will be decreased by 30%. More
|
|
|
|
|
generally, the image size is multiplied by 1 minus N divided by 10.
|
|
|
|
|
N defaults to 2, which decreases the image size by 20%.
|
|
|
|
|
POSITION can be a buffer position or a marker, and defaults to point."
|
2016-02-09 01:44:32 +00:00
|
|
|
|
(interactive "P")
|
2022-10-04 13:09:33 +00:00
|
|
|
|
(image--delayed-change-size (if n
|
|
|
|
|
(- 1 (/ (prefix-numeric-value n) 10.0))
|
|
|
|
|
0.8)
|
|
|
|
|
position)
|
|
|
|
|
(set-transient-map image--repeat-map nil nil
|
|
|
|
|
"Use %k for further adjustments"))
|
2016-02-09 01:44:32 +00:00
|
|
|
|
|
2019-11-20 22:59:49 +00:00
|
|
|
|
(defun image-mouse-increase-size (&optional event)
|
2023-04-06 09:35:17 +00:00
|
|
|
|
"Increase the image size using the mouse-gesture EVENT.
|
|
|
|
|
This increases the size of the image at the position specified by
|
|
|
|
|
EVENT, if any, by the default factor used by `image-increase-size'."
|
2019-11-20 22:59:49 +00:00
|
|
|
|
(interactive "e")
|
|
|
|
|
(when (listp event)
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(posn-set-point (event-start event))
|
2019-11-30 21:21:00 +00:00
|
|
|
|
(image-increase-size nil (point-marker)))))
|
2019-11-20 22:59:49 +00:00
|
|
|
|
|
|
|
|
|
(defun image-mouse-decrease-size (&optional event)
|
2023-04-06 09:35:17 +00:00
|
|
|
|
"Decrease the image size using the mouse-gesture EVENT.
|
|
|
|
|
This decreases the size of the image at the position specified by
|
|
|
|
|
EVENT, if any, by the default factor used by `image-decrease-size'."
|
2019-11-20 22:59:49 +00:00
|
|
|
|
(interactive "e")
|
|
|
|
|
(when (listp event)
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(posn-set-point (event-start event))
|
2019-11-30 21:21:00 +00:00
|
|
|
|
(image-decrease-size nil (point-marker)))))
|
2019-11-20 22:59:49 +00:00
|
|
|
|
|
2019-11-30 21:21:00 +00:00
|
|
|
|
(defun image--get-image (&optional position)
|
2023-04-06 09:35:17 +00:00
|
|
|
|
"Return the image at POSITION.
|
|
|
|
|
POSITION can be a buffer position or a marker, and defaults to point."
|
|
|
|
|
(let* ((image (get-char-property (or position (point)) 'display
|
|
|
|
|
(when (markerp position)
|
|
|
|
|
(marker-buffer position))))
|
|
|
|
|
(image-car (car-safe image))
|
|
|
|
|
(image
|
|
|
|
|
(cond ((eq image-car 'image)
|
|
|
|
|
image)
|
|
|
|
|
;; The value of the display property could be a sliced
|
|
|
|
|
;; image of the form ((slice ...) (image ...)).
|
|
|
|
|
;; FIXME: can we have more than 2 members in the list,
|
|
|
|
|
;; so that the (image ...) part is NOT the cadr?
|
|
|
|
|
((and (listp image) (consp image-car))
|
|
|
|
|
(cadr image))
|
|
|
|
|
(t nil))))
|
2016-05-23 19:12:24 +00:00
|
|
|
|
(unless (eq (car-safe image) 'image)
|
2023-04-06 09:35:17 +00:00
|
|
|
|
(error "No recognizable image under point"))
|
2016-02-10 01:03:55 +00:00
|
|
|
|
image))
|
|
|
|
|
|
2021-10-27 01:22:09 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun image-at-point-p ()
|
|
|
|
|
"Return non-nil if there is an image at point."
|
|
|
|
|
(condition-case nil
|
|
|
|
|
(prog1 t (image--get-image))
|
|
|
|
|
(error nil)))
|
|
|
|
|
|
2019-11-30 21:21:00 +00:00
|
|
|
|
(defun image--get-imagemagick-and-warn (&optional position)
|
2021-03-26 17:13:59 +00:00
|
|
|
|
(declare-function image-transforms-p "image.c" (&optional frame))
|
2019-06-05 20:51:33 +00:00
|
|
|
|
(unless (or (fboundp 'imagemagick-types) (image-transforms-p))
|
2019-01-02 21:00:09 +00:00
|
|
|
|
(error "Cannot rescale images on this terminal"))
|
2019-11-30 21:21:00 +00:00
|
|
|
|
(let ((image (image--get-image position)))
|
2016-02-10 01:03:55 +00:00
|
|
|
|
(image-flush image)
|
2019-06-05 20:51:33 +00:00
|
|
|
|
(when (and (fboundp 'imagemagick-types)
|
|
|
|
|
(not (image-transforms-p)))
|
2017-12-03 17:39:03 +00:00
|
|
|
|
(plist-put (cdr image) :type 'imagemagick))
|
2016-02-10 01:03:55 +00:00
|
|
|
|
image))
|
|
|
|
|
|
2019-11-30 21:21:00 +00:00
|
|
|
|
(defun image--change-size (factor &optional position)
|
|
|
|
|
(let* ((image (image--get-imagemagick-and-warn position))
|
2019-11-30 21:16:03 +00:00
|
|
|
|
(new-image (image--image-without-parameters image))
|
|
|
|
|
(scale (image--current-scaling image new-image)))
|
|
|
|
|
(setcdr image (cdr new-image))
|
|
|
|
|
(plist-put (cdr image) :scale (* scale factor))))
|
2016-02-10 02:47:58 +00:00
|
|
|
|
|
|
|
|
|
(defun image--image-without-parameters (image)
|
|
|
|
|
(cons (pop image)
|
|
|
|
|
(let ((new nil))
|
|
|
|
|
(while image
|
|
|
|
|
(let ((key (pop image))
|
|
|
|
|
(val (pop image)))
|
|
|
|
|
(unless (memq key '(:scale :width :height :max-width :max-height))
|
|
|
|
|
(setq new (nconc new (list key val))))))
|
|
|
|
|
new)))
|
|
|
|
|
|
2018-02-27 06:47:27 +00:00
|
|
|
|
(declare-function image-size "image.c" (spec &optional pixels frame))
|
|
|
|
|
|
2016-02-10 02:47:58 +00:00
|
|
|
|
(defun image--current-scaling (image new-image)
|
|
|
|
|
;; The image may be scaled due to many reasons (:scale, :max-width,
|
|
|
|
|
;; etc), so find out what the current scaling is based on the
|
|
|
|
|
;; original image size and the displayed size.
|
|
|
|
|
(let ((image-width (car (image-size new-image t)))
|
|
|
|
|
(display-width (car (image-size image t))))
|
|
|
|
|
(/ (float display-width) image-width)))
|
2016-02-09 01:44:32 +00:00
|
|
|
|
|
2019-07-16 21:51:27 +00:00
|
|
|
|
(defun image-rotate (&optional angle)
|
|
|
|
|
"Rotate the image under point by ANGLE degrees clockwise.
|
|
|
|
|
If nil, ANGLE defaults to 90. Interactively, rotate the image 90
|
|
|
|
|
degrees clockwise with no prefix argument, and counter-clockwise
|
|
|
|
|
with a prefix argument. Note that most image types support
|
|
|
|
|
rotations by only multiples of 90 degrees."
|
|
|
|
|
(interactive (and current-prefix-arg '(-90)))
|
2016-02-10 01:03:55 +00:00
|
|
|
|
(let ((image (image--get-imagemagick-and-warn)))
|
2019-07-16 21:51:27 +00:00
|
|
|
|
(setf (image-property image :rotation)
|
|
|
|
|
(float (mod (+ (or (image-property image :rotation) 0)
|
|
|
|
|
(or angle 90))
|
|
|
|
|
;; We don't want to exceed 360 degrees rotation,
|
|
|
|
|
;; because it's not seen as valid in Exif data.
|
2022-10-04 13:09:33 +00:00
|
|
|
|
360))))
|
|
|
|
|
(set-transient-map image--repeat-map nil nil
|
|
|
|
|
"Use %k for further adjustments"))
|
2016-02-10 01:03:55 +00:00
|
|
|
|
|
|
|
|
|
(defun image-save ()
|
2021-07-05 12:49:56 +00:00
|
|
|
|
"Save the image under point.
|
|
|
|
|
This writes the original image data to a file. Rotating or
|
|
|
|
|
changing the displayed image size does not affect the saved image."
|
2016-02-10 01:03:55 +00:00
|
|
|
|
(interactive)
|
2018-03-11 10:13:47 +00:00
|
|
|
|
(let ((image (image--get-image)))
|
2016-02-10 01:03:55 +00:00
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(let ((file (plist-get (cdr image) :file)))
|
|
|
|
|
(if file
|
|
|
|
|
(if (not (file-exists-p file))
|
|
|
|
|
(error "File %s no longer exists" file)
|
|
|
|
|
(insert-file-contents-literally file))
|
|
|
|
|
(insert (plist-get (cdr image) :data))))
|
|
|
|
|
(write-region (point-min) (point-max)
|
|
|
|
|
(read-file-name "Write image to file: ")))))
|
|
|
|
|
|
2022-06-24 12:44:02 +00:00
|
|
|
|
(defun image-flip-horizontally ()
|
|
|
|
|
"Horizontally flip the image under point."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((image (image--get-image)))
|
|
|
|
|
(image-flush image)
|
|
|
|
|
(setf (image-property image :flip)
|
|
|
|
|
(not (image-property image :flip)))))
|
|
|
|
|
|
|
|
|
|
(defun image-flip-vertically ()
|
|
|
|
|
"Vertically flip the image under point."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((image (image--get-image)))
|
|
|
|
|
(image-rotate 180)
|
|
|
|
|
(setf (image-property image :flip)
|
|
|
|
|
(not (image-property image :flip)))))
|
|
|
|
|
|
2022-08-09 12:04:12 +00:00
|
|
|
|
(define-obsolete-function-alias 'image-refresh #'image-flush "29.1")
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(provide 'image)
|
|
|
|
|
|
1999-10-05 18:41:17 +00:00
|
|
|
|
;;; image.el ends here
|