HideIfDef mode bug fixes and enhancements. This is #2 of 3 patches based
[bpt/emacs.git] / lisp / image-mode.el
CommitLineData
83600dc8 1;;; image-mode.el --- support for visiting image files -*- lexical-binding: t -*-
c7bd5d57 2;;
ba318903 3;; Copyright (C) 2005-2014 Free Software Foundation, Inc.
c7bd5d57
RS
4;;
5;; Author: Richard Stallman <rms@gnu.org>
6;; Keywords: multimedia
bd78fa1d 7;; Package: emacs
c7bd5d57
RS
8
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
c7bd5d57 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
c7bd5d57
RS
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
c7bd5d57
RS
23
24;;; Commentary:
25
26;; Defines a major mode for visiting image files
27;; that allows conversion between viewing the text of the file
28;; and viewing the file as an image. Viewing the image
29;; works by putting a `display' text-property on the
30;; image data, with the image-data still present underneath; if the
31;; resulting buffer file is saved to another name it will correctly save
32;; the image data to the new file.
33
83600dc8
SM
34;; Todo:
35
36;; Consolidate with doc-view to make them work on directories of images or on
37;; image files containing various "pages".
38
c7bd5d57
RS
39;;; Code:
40
41(require 'image)
f58e0fd5 42(eval-when-compile (require 'cl-lib))
c7bd5d57 43
44e3c7c6
SM
44;;; Image mode window-info management.
45
83600dc8 46(defvar-local image-mode-winprops-alist t)
44e3c7c6
SM
47
48(defvar image-mode-new-window-functions nil
49 "Special hook run when image data is requested in a new window.
50It is called with one argument, the initial WINPROPS.")
51
b81f0bab 52(defun image-mode-winprops (&optional window cleanup)
44e3c7c6 53 "Return winprops of WINDOW.
83600dc8
SM
54A winprops object has the shape (WINDOW . ALIST).
55WINDOW defaults to `selected-window' if it displays the current buffer, and
56otherwise it defaults to t, used for times when the buffer is not displayed."
b81f0bab 57 (cond ((null window)
83600dc8
SM
58 (setq window
59 (if (eq (current-buffer) (window-buffer)) (selected-window) t)))
60 ((eq window t))
b81f0bab
CY
61 ((not (windowp window))
62 (error "Not a window: %s" window)))
63 (when cleanup
64 (setq image-mode-winprops-alist
65 (delq nil (mapcar (lambda (winprop)
08ce64e6
SM
66 (let ((w (car-safe winprop)))
67 (if (or (not (windowp w)) (window-live-p w))
68 winprop)))
b81f0bab 69 image-mode-winprops-alist))))
44e3c7c6
SM
70 (let ((winprops (assq window image-mode-winprops-alist)))
71 ;; For new windows, set defaults from the latest.
50105835
SM
72 (if winprops
73 ;; Move window to front.
74 (setq image-mode-winprops-alist
75 (cons winprops (delq winprops image-mode-winprops-alist)))
44e3c7c6
SM
76 (setq winprops (cons window
77 (copy-alist (cdar image-mode-winprops-alist))))
50105835
SM
78 ;; Add winprops before running the hook, to avoid inf-loops if the hook
79 ;; triggers window-configuration-change-hook.
80 (setq image-mode-winprops-alist
81 (cons winprops image-mode-winprops-alist))
44e3c7c6 82 (run-hook-with-args 'image-mode-new-window-functions winprops))
44e3c7c6
SM
83 winprops))
84
85(defun image-mode-window-get (prop &optional winprops)
f58e0fd5
SM
86 (declare (gv-setter (lambda (val)
87 `(image-mode-window-put ,prop ,val ,winprops))))
44e3c7c6
SM
88 (unless (consp winprops) (setq winprops (image-mode-winprops winprops)))
89 (cdr (assq prop (cdr winprops))))
90
44e3c7c6
SM
91(defun image-mode-window-put (prop val &optional winprops)
92 (unless (consp winprops) (setq winprops (image-mode-winprops winprops)))
93 (setcdr winprops (cons (cons prop val)
94 (delq (assq prop (cdr winprops)) (cdr winprops)))))
95
96(defun image-set-window-vscroll (vscroll)
97 (setf (image-mode-window-get 'vscroll) vscroll)
98 (set-window-vscroll (selected-window) vscroll))
99
100(defun image-set-window-hscroll (ncol)
60134fd4 101 (setf (image-mode-window-get 'hscroll) ncol)
44e3c7c6
SM
102 (set-window-hscroll (selected-window) ncol))
103
104(defun image-mode-reapply-winprops ()
6d401b4e
SM
105 ;; When set-window-buffer, set hscroll and vscroll to what they were
106 ;; last time the image was displayed in this window.
4fd996b3
SM
107 (when (listp image-mode-winprops-alist)
108 ;; Beware: this call to image-mode-winprops can't be optimized away,
109 ;; because it not only gets the winprops data but sets it up if needed
110 ;; (e.g. it's used by doc-view to display the image in a new window).
b81f0bab 111 (let* ((winprops (image-mode-winprops nil t))
6d401b4e
SM
112 (hscroll (image-mode-window-get 'hscroll winprops))
113 (vscroll (image-mode-window-get 'vscroll winprops)))
4fd996b3
SM
114 (when (image-get-display-property) ;Only do it if we display an image!
115 (if hscroll (set-window-hscroll (selected-window) hscroll))
116 (if vscroll (set-window-vscroll (selected-window) vscroll))))))
36e1c289 117
44e3c7c6
SM
118(defun image-mode-setup-winprops ()
119 ;; Record current scroll settings.
120 (unless (listp image-mode-winprops-alist)
121 (setq image-mode-winprops-alist nil))
122 (add-hook 'window-configuration-change-hook
123 'image-mode-reapply-winprops nil t))
124
125;;; Image scrolling functions
126
91784462
SM
127(defun image-get-display-property ()
128 (get-char-property (point-min) 'display
129 ;; There might be different images for different displays.
130 (if (eq (window-buffer) (current-buffer))
131 (selected-window))))
132
aa360da1
GM
133(declare-function image-size "image.c" (spec &optional pixels frame))
134
c9088194 135(defun image-display-size (spec &optional pixels frame)
2f224f0b
CY
136 "Wrapper around `image-size', handling slice display properties.
137Like `image-size', the return value is (WIDTH . HEIGHT).
138WIDTH and HEIGHT are in canonical character units if PIXELS is
139nil, and in pixel units if PIXELS is non-nil.
140
141If SPEC is an image display property, this function is equivalent
142to `image-size'. If SPEC is a list of properties containing
143`image' and `slice' properties, return the display size taking
144the slice property into account. If the list contains `image'
145but not `slice', return the `image-size' of the specified image."
c9088194
SK
146 (if (eq (car spec) 'image)
147 (image-size spec pixels frame)
148 (let ((image (assoc 'image spec))
149 (slice (assoc 'slice spec)))
150 (cond ((and image slice)
151 (if pixels
152 (cons (nth 3 slice) (nth 4 slice))
153 (cons (/ (float (nth 3 slice)) (frame-char-width frame))
154 (/ (float (nth 4 slice)) (frame-char-height frame)))))
155 (image
156 (image-size image pixels frame))
157 (t
158 (error "Invalid image specification: %s" spec))))))
159
bb0cb417
CY
160(defun image-forward-hscroll (&optional n)
161 "Scroll image in current window to the left by N character widths.
162Stop if the right edge of the image is reached."
163 (interactive "p")
164 (cond ((= n 0) nil)
165 ((< n 0)
44e3c7c6 166 (image-set-window-hscroll (max 0 (+ (window-hscroll) n))))
bb0cb417 167 (t
91784462 168 (let* ((image (image-get-display-property))
bb0cb417
CY
169 (edges (window-inside-edges))
170 (win-width (- (nth 2 edges) (nth 0 edges)))
c9088194 171 (img-width (ceiling (car (image-display-size image)))))
44e3c7c6 172 (image-set-window-hscroll (min (max 0 (- img-width win-width))
36e1c289 173 (+ n (window-hscroll))))))))
bb0cb417
CY
174
175(defun image-backward-hscroll (&optional n)
176 "Scroll image in current window to the right by N character widths.
177Stop if the left edge of the image is reached."
178 (interactive "p")
179 (image-forward-hscroll (- n)))
180
77549ea8 181(defun image-next-line (n)
bb0cb417
CY
182 "Scroll image in current window upward by N lines.
183Stop if the bottom edge of the image is reached."
184 (interactive "p")
185 (cond ((= n 0) nil)
186 ((< n 0)
44e3c7c6 187 (image-set-window-vscroll (max 0 (+ (window-vscroll) n))))
bb0cb417 188 (t
91784462 189 (let* ((image (image-get-display-property))
bb0cb417
CY
190 (edges (window-inside-edges))
191 (win-height (- (nth 3 edges) (nth 1 edges)))
c9088194 192 (img-height (ceiling (cdr (image-display-size image)))))
44e3c7c6 193 (image-set-window-vscroll (min (max 0 (- img-height win-height))
36e1c289 194 (+ n (window-vscroll))))))))
bb0cb417
CY
195
196(defun image-previous-line (&optional n)
197 "Scroll image in current window downward by N lines.
198Stop if the top edge of the image is reached."
199 (interactive "p")
200 (image-next-line (- n)))
201
202(defun image-scroll-up (&optional n)
203 "Scroll image in current window upward by N lines.
204Stop if the bottom edge of the image is reached.
205If ARG is omitted or nil, scroll upward by a near full screen.
206A near full screen is `next-screen-context-lines' less than a full screen.
207Negative ARG means scroll downward.
208If ARG is the atom `-', scroll downward by nearly full screen.
209When calling from a program, supply as argument a number, nil, or `-'."
210 (interactive "P")
211 (cond ((null n)
212 (let* ((edges (window-inside-edges))
213 (win-height (- (nth 3 edges) (nth 1 edges))))
214 (image-next-line
215 (max 0 (- win-height next-screen-context-lines)))))
216 ((eq n '-)
217 (let* ((edges (window-inside-edges))
218 (win-height (- (nth 3 edges) (nth 1 edges))))
219 (image-next-line
220 (min 0 (- next-screen-context-lines win-height)))))
221 (t (image-next-line (prefix-numeric-value n)))))
222
223(defun image-scroll-down (&optional n)
3488c456 224 "Scroll image in current window downward by N lines.
bb0cb417
CY
225Stop if the top edge of the image is reached.
226If ARG is omitted or nil, scroll downward by a near full screen.
227A near full screen is `next-screen-context-lines' less than a full screen.
228Negative ARG means scroll upward.
229If ARG is the atom `-', scroll upward by nearly full screen.
230When calling from a program, supply as argument a number, nil, or `-'."
231 (interactive "P")
232 (cond ((null n)
233 (let* ((edges (window-inside-edges))
234 (win-height (- (nth 3 edges) (nth 1 edges))))
235 (image-next-line
236 (min 0 (- next-screen-context-lines win-height)))))
237 ((eq n '-)
238 (let* ((edges (window-inside-edges))
239 (win-height (- (nth 3 edges) (nth 1 edges))))
240 (image-next-line
241 (max 0 (- win-height next-screen-context-lines)))))
242 (t (image-next-line (- (prefix-numeric-value n))))))
243
244(defun image-bol (arg)
245 "Scroll horizontally to the left edge of the image in the current window.
246With argument ARG not nil or 1, move forward ARG - 1 lines first,
247stopping if the top or bottom edge of the image is reached."
248 (interactive "p")
249 (and arg
250 (/= (setq arg (prefix-numeric-value arg)) 1)
251 (image-next-line (- arg 1)))
44e3c7c6 252 (image-set-window-hscroll 0))
bb0cb417
CY
253
254(defun image-eol (arg)
255 "Scroll horizontally to the right edge of the image in the current window.
256With argument ARG not nil or 1, move forward ARG - 1 lines first,
257stopping if the top or bottom edge of the image is reached."
258 (interactive "p")
259 (and arg
260 (/= (setq arg (prefix-numeric-value arg)) 1)
261 (image-next-line (- arg 1)))
91784462 262 (let* ((image (image-get-display-property))
bb0cb417
CY
263 (edges (window-inside-edges))
264 (win-width (- (nth 2 edges) (nth 0 edges)))
c9088194 265 (img-width (ceiling (car (image-display-size image)))))
44e3c7c6 266 (image-set-window-hscroll (max 0 (- img-width win-width)))))
bb0cb417
CY
267
268(defun image-bob ()
269 "Scroll to the top-left corner of the image in the current window."
270 (interactive)
44e3c7c6
SM
271 (image-set-window-hscroll 0)
272 (image-set-window-vscroll 0))
bb0cb417
CY
273
274(defun image-eob ()
275 "Scroll to the bottom-right corner of the image in the current window."
276 (interactive)
91784462 277 (let* ((image (image-get-display-property))
bb0cb417
CY
278 (edges (window-inside-edges))
279 (win-width (- (nth 2 edges) (nth 0 edges)))
c9088194 280 (img-width (ceiling (car (image-display-size image))))
bb0cb417 281 (win-height (- (nth 3 edges) (nth 1 edges)))
c9088194 282 (img-height (ceiling (cdr (image-display-size image)))))
44e3c7c6
SM
283 (image-set-window-hscroll (max 0 (- img-width win-width)))
284 (image-set-window-vscroll (max 0 (- img-height win-height)))))
bb0cb417 285
bd1d6a63
SM
286;; Adjust frame and image size.
287
2a43515a
CY
288(defun image-mode-fit-frame (&optional frame toggle)
289 "Fit FRAME to the current image.
290If FRAME is omitted or nil, it defaults to the selected frame.
291All other windows on the frame are deleted.
292
293If called interactively, or if TOGGLE is non-nil, toggle between
294fitting FRAME to the current image and restoring the size and
295window configuration prior to the last `image-mode-fit-frame'
296call."
297 (interactive (list nil t))
298 (let* ((buffer (current-buffer))
bd1d6a63 299 (display (image-get-display-property))
2a43515a
CY
300 (size (image-display-size display))
301 (saved (frame-parameter frame 'image-mode-saved-params))
302 (window-configuration (current-window-configuration frame))
303 (width (frame-width frame))
304 (height (frame-height frame)))
305 (with-selected-frame (or frame (selected-frame))
306 (if (and toggle saved
307 (= (caar saved) width)
308 (= (cdar saved) height))
309 (progn
310 (set-frame-width frame (car (nth 1 saved)))
311 (set-frame-height frame (cdr (nth 1 saved)))
312 (set-window-configuration (nth 2 saved))
313 (set-frame-parameter frame 'image-mode-saved-params nil))
314 (delete-other-windows)
315 (switch-to-buffer buffer t t)
316 (let* ((edges (window-inside-edges))
317 (inner-width (- (nth 2 edges) (nth 0 edges)))
318 (inner-height (- (nth 3 edges) (nth 1 edges))))
319 (set-frame-width frame (+ (ceiling (car size))
320 width (- inner-width)))
321 (set-frame-height frame (+ (ceiling (cdr size))
322 height (- inner-height)))
323 ;; The frame size after the above `set-frame-*' calls may
324 ;; differ from what we specified, due to window manager
325 ;; interference. We have to call `frame-width' and
326 ;; `frame-height' to get the actual results.
327 (set-frame-parameter frame 'image-mode-saved-params
328 (list (cons (frame-width)
329 (frame-height))
330 (cons width height)
331 window-configuration)))))))
bd1d6a63 332
bb0cb417
CY
333;;; Image Mode setup
334
4fd996b3 335(defvar-local image-type nil
71d73c9c 336 "The image type for the current Image mode buffer.")
d487ca7d 337
dc504515
GM
338(defvar-local image-multi-frame nil
339 "Non-nil if image for the current Image mode buffer has multiple frames.")
340
9b9debd1
JL
341(defvar image-mode-previous-major-mode nil
342 "Internal variable to keep the previous non-image major mode.")
343
c7bd5d57 344(defvar image-mode-map
bb0cb417 345 (let ((map (make-sparse-keymap)))
abef340a 346 (set-keymap-parent map special-mode-map)
bb0cb417 347 (define-key map "\C-c\C-c" 'image-toggle-display)
42c27c2a 348 (define-key map (kbd "SPC") 'image-scroll-up)
9cec74cf 349 (define-key map (kbd "S-SPC") 'image-scroll-down)
42c27c2a 350 (define-key map (kbd "DEL") 'image-scroll-down)
18af70d0 351 (define-key map (kbd "RET") 'image-toggle-animation)
c0211c4e
GM
352 (define-key map "F" 'image-goto-frame)
353 (define-key map "f" 'image-next-frame)
354 (define-key map "b" 'image-previous-frame)
20de6ab6
CW
355 (define-key map "n" 'image-next-file)
356 (define-key map "p" 'image-previous-file)
3a2ddc2d
GM
357 (define-key map "a+" 'image-increase-speed)
358 (define-key map "a-" 'image-decrease-speed)
359 (define-key map "a0" 'image-reset-speed)
360 (define-key map "ar" 'image-reverse-speed)
bb0cb417
CY
361 (define-key map [remap forward-char] 'image-forward-hscroll)
362 (define-key map [remap backward-char] 'image-backward-hscroll)
d8b0cddd
SM
363 (define-key map [remap right-char] 'image-forward-hscroll)
364 (define-key map [remap left-char] 'image-backward-hscroll)
bb0cb417
CY
365 (define-key map [remap previous-line] 'image-previous-line)
366 (define-key map [remap next-line] 'image-next-line)
367 (define-key map [remap scroll-up] 'image-scroll-up)
368 (define-key map [remap scroll-down] 'image-scroll-down)
32129746
JL
369 (define-key map [remap scroll-up-command] 'image-scroll-up)
370 (define-key map [remap scroll-down-command] 'image-scroll-down)
bb0cb417
CY
371 (define-key map [remap move-beginning-of-line] 'image-bol)
372 (define-key map [remap move-end-of-line] 'image-eol)
373 (define-key map [remap beginning-of-buffer] 'image-bob)
374 (define-key map [remap end-of-buffer] 'image-eob)
783b7b75
GM
375 (easy-menu-define image-mode-menu map "Menu for Image mode."
376 '("Image"
377 ["Show as Text" image-toggle-display :active t
378 :help "Show image as text"]
379 "--"
380 ["Fit Frame to Image" image-mode-fit-frame :active t
381 :help "Resize frame to match image"]
382 ["Fit to Window Height" image-transform-fit-to-height
383 :visible (eq image-type 'imagemagick)
384 :help "Resize image to match the window height"]
385 ["Fit to Window Width" image-transform-fit-to-width
386 :visible (eq image-type 'imagemagick)
387 :help "Resize image to match the window width"]
388 ["Rotate Image..." image-transform-set-rotation
389 :visible (eq image-type 'imagemagick)
390 :help "Rotate the image"]
391 "--"
f05e2ff2
GM
392 ["Show Thumbnails"
393 (lambda ()
394 (interactive)
395 (image-dired default-directory))
396 :active default-directory
397 :help "Show thumbnails for all images in this directory"]
398 ["Next Image" image-next-file :active buffer-file-name
783b7b75 399 :help "Move to next image in this directory"]
f05e2ff2 400 ["Previous Image" image-previous-file :active buffer-file-name
783b7b75
GM
401 :help "Move to previous image in this directory"]
402 "--"
403 ["Animate Image" image-toggle-animation :style toggle
404 :selected (let ((image (image-get-display-property)))
405 (and image (image-animate-timer image)))
dc504515 406 :active image-multi-frame
783b7b75
GM
407 :help "Toggle image animation"]
408 ["Loop Animation"
409 (lambda () (interactive)
783b7b75
GM
410 (setq image-animate-loop (not image-animate-loop))
411 ;; FIXME this is a hacky way to make it affect a currently
412 ;; animating image.
413 (when (let ((image (image-get-display-property)))
414 (and image (image-animate-timer image)))
415 (image-toggle-animation)
416 (image-toggle-animation)))
417 :style toggle :selected image-animate-loop
dc504515 418 :active image-multi-frame
3a2ddc2d
GM
419 :help "Animate images once, or forever?"]
420 ["Reverse Animation" image-reverse-speed
421 :style toggle :selected (let ((image (image-get-display-property)))
422 (and image (<
423 (image-animate-get-speed image)
424 0)))
425 :active image-multi-frame
426 :help "Reverse direction of this image's animation?"]
427 ["Speed Up Animation" image-increase-speed
428 :active image-multi-frame
429 :help "Speed up this image's animation"]
430 ["Slow Down Animation" image-decrease-speed
431 :active image-multi-frame
432 :help "Slow down this image's animation"]
433 ["Reset Animation Speed" image-reset-speed
434 :active image-multi-frame
435 :help "Reset the speed of this image's animation"]
dc504515 436 ["Next Frame" image-next-frame :active image-multi-frame
783b7b75 437 :help "Show the next frame of this image"]
dc504515 438 ["Previous Frame" image-previous-frame :active image-multi-frame
783b7b75 439 :help "Show the previous frame of this image"]
dc504515 440 ["Goto Frame..." image-goto-frame :active image-multi-frame
783b7b75
GM
441 :help "Show a specific frame of this image"]
442 ))
bb0cb417 443 map)
71d73c9c 444 "Mode keymap for `image-mode'.")
bb0cb417 445
9b9debd1 446(defvar image-minor-mode-map
c7bd5d57
RS
447 (let ((map (make-sparse-keymap)))
448 (define-key map "\C-c\C-c" 'image-toggle-display)
449 map)
71d73c9c 450 "Mode keymap for `image-minor-mode'.")
c7bd5d57 451
e0385bf4 452(defvar bookmark-make-record-function)
a47d49c0 453
0d17c4b9
JL
454(put 'image-mode 'mode-class 'special)
455
c7bd5d57
RS
456;;;###autoload
457(defun image-mode ()
458 "Major mode for image files.
459You can use \\<image-mode-map>\\[image-toggle-display]
3a2ddc2d
GM
460to toggle between display as an image and display as text.
461
462Key bindings:
463\\{image-mode-map}"
c7bd5d57 464 (interactive)
9b9debd1
JL
465 (condition-case err
466 (progn
467 (unless (display-images-p)
468 (error "Display does not support images"))
469
470 (kill-all-local-variables)
471 (setq major-mode 'image-mode)
472
473 (if (not (image-get-display-property))
474 (progn
475 (image-toggle-display-image)
476 ;; If attempt to display the image fails.
477 (if (not (image-get-display-property))
478 (error "Invalid image")))
479 ;; Set next vars when image is already displayed but local
480 ;; variables were cleared by kill-all-local-variables
481 (setq cursor-type nil truncate-lines t
482 image-type (plist-get (cdr (image-get-display-property)) :type)))
483
484 (setq mode-name (if image-type (format "Image[%s]" image-type) "Image"))
bb43424b 485 (use-local-map image-mode-map)
9b9debd1
JL
486
487 ;; Use our own bookmarking function for images.
4fd996b3
SM
488 (setq-local bookmark-make-record-function
489 #'image-bookmark-make-record)
9b9debd1
JL
490
491 ;; Keep track of [vh]scroll when switching buffers
492 (image-mode-setup-winprops)
493
494 (add-hook 'change-major-mode-hook 'image-toggle-display-text nil t)
0fb1193d 495 (add-hook 'after-revert-hook 'image-after-revert-hook nil t)
9b9debd1 496 (run-mode-hooks 'image-mode-hook)
18af70d0
CY
497 (let ((image (image-get-display-property))
498 (msg1 (substitute-command-keys
bb9dfee1
GM
499 "Type \\[image-toggle-display] to view the image as "))
500 animated)
18af70d0
CY
501 (cond
502 ((null image)
503 (message "%s" (concat msg1 "an image.")))
ed8d7fca 504 ((setq animated (image-multi-frame-p image))
dc504515 505 (setq image-multi-frame t
bb9dfee1 506 mode-line-process
5db881d0
GM
507 `(:eval
508 (concat " "
509 (propertize
510 (format "[%s/%s]"
511 (1+ (image-current-frame ',image))
512 ,(car animated))
513 'help-echo "Frames
514mouse-1: Next frame
515mouse-3: Previous frame"
516 'mouse-face 'mode-line-highlight
517 'local-map
518 '(keymap
519 (mode-line
520 keymap
521 (down-mouse-1 . image-next-frame)
522 (down-mouse-3 . image-previous-frame)))))))
18af70d0 523 (message "%s"
ed8d7fca
GM
524 (concat msg1 "text. This image has multiple frames.")))
525;;; (substitute-command-keys
526;;; "\\[image-toggle-animation] to animate."))))
18af70d0
CY
527 (t
528 (message "%s" (concat msg1 "text."))))))
529
9b9debd1
JL
530 (error
531 (image-mode-as-text)
532 (funcall
533 (if (called-interactively-p 'any) 'error 'message)
534 "Cannot display image: %s" (cdr err)))))
18af70d0 535
d90e651e
JL
536;;;###autoload
537(define-minor-mode image-minor-mode
06e21633
CY
538 "Toggle Image minor mode in this buffer.
539With a prefix argument ARG, enable Image minor mode if ARG is
540positive, and disable it otherwise. If called from Lisp, enable
541the mode if ARG is omitted or nil.
542
543Image minor mode provides the key \\<image-mode-map>\\[image-toggle-display],
544to switch back to `image-mode' and display an image file as the
545actual image."
9b9debd1
JL
546 nil (:eval (if image-type (format " Image[%s]" image-type) " Image"))
547 image-minor-mode-map
d90e651e
JL
548 :group 'image
549 :version "22.1"
9b9debd1
JL
550 (if image-minor-mode
551 (add-hook 'change-major-mode-hook (lambda () (image-minor-mode -1)) nil t)))
d90e651e
JL
552
553;;;###autoload
9b9debd1
JL
554(defun image-mode-as-text ()
555 "Set a non-image mode as major mode in combination with image minor mode.
556A non-image major mode found from `auto-mode-alist' or Fundamental mode
557displays an image file as text. `image-minor-mode' provides the key
558\\<image-mode-map>\\[image-toggle-display] to switch back to `image-mode'
559to display an image file as the actual image.
560
561You can use `image-mode-as-text' in `auto-mode-alist' when you want
316d12fb 562to display an image file as text initially.
9b9debd1
JL
563
564See commands `image-mode' and `image-minor-mode' for more information
565on these modes."
d90e651e 566 (interactive)
9b9debd1
JL
567 ;; image-mode-as-text = normal-mode + image-minor-mode
568 (let ((previous-image-type image-type)) ; preserve `image-type'
569 (if image-mode-previous-major-mode
570 ;; Restore previous major mode that was already found by this
571 ;; function and cached in `image-mode-previous-major-mode'
572 (funcall image-mode-previous-major-mode)
573 (let ((auto-mode-alist
574 (delq nil (mapcar
575 (lambda (elt)
576 (unless (memq (or (car-safe (cdr elt)) (cdr elt))
577 '(image-mode image-mode-maybe image-mode-as-text))
578 elt))
579 auto-mode-alist)))
580 (magic-fallback-mode-alist
581 (delq nil (mapcar
582 (lambda (elt)
583 (unless (memq (or (car-safe (cdr elt)) (cdr elt))
584 '(image-mode image-mode-maybe image-mode-as-text))
585 elt))
586 magic-fallback-mode-alist))))
587 (normal-mode)
4fd996b3 588 (setq-local image-mode-previous-major-mode major-mode)))
9b9debd1
JL
589 ;; Restore `image-type' after `kill-all-local-variables' in `normal-mode'.
590 (setq image-type previous-image-type)
591 ;; Enable image minor mode with `C-c C-c'.
592 (image-minor-mode 1)
593 ;; Show the image file as text.
594 (image-toggle-display-text)
595 (message "%s" (concat
596 (substitute-command-keys
597 "Type \\[image-toggle-display] to view the image as ")
598 (if (image-get-display-property)
599 "text" "an image") "."))))
600
601(define-obsolete-function-alias 'image-mode-maybe 'image-mode "23.2")
d90e651e
JL
602
603(defun image-toggle-display-text ()
9b9debd1
JL
604 "Show the image file as text.
605Remove text properties that display the image."
606 (let ((inhibit-read-only t)
607 (buffer-undo-list t)
608 (modified (buffer-modified-p)))
609 (remove-list-of-text-properties (point-min) (point-max)
345083b2 610 '(display read-nonsticky ;; intangible
9b9debd1
JL
611 read-only front-sticky))
612 (set-buffer-modified-p modified)
613 (if (called-interactively-p 'any)
614 (message "Repeat this command to go back to displaying the image"))))
c7bd5d57 615
f2920ffe
RS
616(defvar archive-superior-buffer)
617(defvar tar-superior-buffer)
110683ad 618(declare-function image-flush "image.c" (spec &optional frame))
f2920ffe 619
9b9debd1
JL
620(defun image-toggle-display-image ()
621 "Show the image of the image file.
622Turn the image data into a real image, but only if the whole file
623was inserted."
953a8c3b 624 (unless (derived-mode-p 'image-mode)
a32d4040 625 (error "The buffer is not in Image mode"))
9b9debd1
JL
626 (let* ((filename (buffer-file-name))
627 (data-p (not (and filename
628 (file-readable-p filename)
629 (not (file-remote-p filename))
630 (not (buffer-modified-p))
631 (not (and (boundp 'archive-superior-buffer)
632 archive-superior-buffer))
633 (not (and (boundp 'tar-superior-buffer)
634 tar-superior-buffer)))))
635 (file-or-data (if data-p
636 (string-make-unibyte
637 (buffer-substring-no-properties (point-min) (point-max)))
638 filename))
639 (type (image-type file-or-data nil data-p))
e8cbec34
CY
640 (image (create-image file-or-data type data-p))
641 (inhibit-read-only t)
642 (buffer-undo-list t)
643 (modified (buffer-modified-p))
644 props)
645
18af70d0
CY
646 ;; Discard any stale image data before looking it up again.
647 (image-flush image)
e8cbec34
CY
648 (setq image (append image (image-transform-properties image)))
649 (setq props
9b9debd1 650 `(display ,image
345083b2
SM
651 ;; intangible ,image
652 rear-nonsticky (display) ;; intangible
9b9debd1 653 read-only t front-sticky (read-only)))
e8cbec34 654
9b9debd1
JL
655 (let ((buffer-file-truename nil)) ; avoid changing dir mtime by lock_file
656 (add-text-properties (point-min) (point-max) props)
657 (restore-buffer-modified-p modified))
658 ;; Inhibit the cursor when the buffer contains only an image,
659 ;; because cursors look very strange on top of images.
660 (setq cursor-type nil)
661 ;; This just makes the arrow displayed in the right fringe
662 ;; area look correct when the image is wider than the window.
663 (setq truncate-lines t)
4114ed61
EZ
664 ;; Disable adding a newline at the end of the image file when it
665 ;; is written with, e.g., C-x C-w.
666 (if (coding-system-equal (coding-system-base buffer-file-coding-system)
667 'no-conversion)
4fd996b3
SM
668 (setq-local find-file-literally t))
669 ;; Allow navigation of large images.
670 (setq-local auto-hscroll-mode nil)
9b9debd1
JL
671 (setq image-type type)
672 (if (eq major-mode 'image-mode)
673 (setq mode-name (format "Image[%s]" type)))
2d21d7f6 674 (image-transform-check-size)
9b9debd1
JL
675 (if (called-interactively-p 'any)
676 (message "Repeat this command to go back to displaying the file as text"))))
677
c7bd5d57 678(defun image-toggle-display ()
71d73c9c
CY
679 "Toggle between image and text display.
680If the current buffer is displaying an image file as an image,
681call `image-mode-as-text' to switch to text. Otherwise, display
682the image by calling `image-mode'."
c7bd5d57 683 (interactive)
91784462 684 (if (image-get-display-property)
9b9debd1
JL
685 (image-mode-as-text)
686 (image-mode)))
0fb1193d
JL
687
688(defun image-after-revert-hook ()
689 (when (image-get-display-property)
690 (image-toggle-display-text)
691 ;; Update image display.
637d46ca
GM
692 (mapc (lambda (window) (redraw-frame (window-frame window)))
693 (get-buffer-window-list (current-buffer) 'nomini 'visible))
0fb1193d
JL
694 (image-toggle-display-image)))
695
97666703 696\f
18af70d0
CY
697;;; Animated images
698
699(defcustom image-animate-loop nil
eea14f31 700 "Non-nil means animated images loop forever, rather than playing once."
18af70d0
CY
701 :type 'boolean
702 :version "24.1"
703 :group 'image)
704
705(defun image-toggle-animation ()
eea14f31
GM
706 "Start or stop animating the current image.
707If `image-animate-loop' is non-nil, animation loops forever.
708Otherwise it plays once, then stops."
18af70d0
CY
709 (interactive)
710 (let ((image (image-get-display-property))
711 animation)
712 (cond
713 ((null image)
714 (error "No image is present"))
ed8d7fca 715 ((null (setq animation (image-multi-frame-p image)))
18af70d0
CY
716 (message "No image animation."))
717 (t
718 (let ((timer (image-animate-timer image)))
719 (if timer
720 (cancel-timer timer)
721 (let ((index (plist-get (cdr image) :index)))
722 ;; If we're at the end, restart.
723 (and index
724 (>= index (1- (car animation)))
725 (setq index nil))
726 (image-animate image index
727 (if image-animate-loop t)))))))))
728
3a2ddc2d
GM
729(defun image--set-speed (speed &optional multiply)
730 "Set speed of an animated image to SPEED.
731If MULTIPLY is non-nil, treat SPEED as a multiplication factor.
732If SPEED is `reset', reset the magnitude of the speed to 1."
733 (let ((image (image-get-display-property)))
734 (cond
735 ((null image)
736 (error "No image is present"))
737 ((null image-multi-frame)
738 (message "No image animation."))
739 (t
740 (if (eq speed 'reset)
741 (setq speed (if (< (image-animate-get-speed image) 0)
742 -1 1)
743 multiply nil))
744 (image-animate-set-speed image speed multiply)
745 ;; FIXME Hack to refresh an active image.
746 (when (image-animate-timer image)
747 (image-toggle-animation)
748 (image-toggle-animation))
749 (message "Image speed is now %s" (image-animate-get-speed image))))))
750
751(defun image-increase-speed ()
752 "Increase the speed of current animated image by a factor of 2."
753 (interactive)
754 (image--set-speed 2 t))
755
756(defun image-decrease-speed ()
757 "Decrease the speed of current animated image by a factor of 2."
758 (interactive)
759 (image--set-speed 0.5 t))
760
761(defun image-reverse-speed ()
762 "Reverse the animation of the current image."
763 (interactive)
764 (image--set-speed -1 t))
765
766(defun image-reset-speed ()
767 "Reset the animation speed of the current image."
768 (interactive)
769 (image--set-speed 'reset))
770
c0211c4e
GM
771(defun image-goto-frame (n &optional relative)
772 "Show frame N of a multi-frame image.
773Optional argument OFFSET non-nil means interpret N as relative to the
774current frame. Frames are indexed from 1."
775 (interactive
776 (list (or current-prefix-arg
777 (read-number "Show frame number: "))))
783b7b75 778 (let ((image (image-get-display-property)))
c0211c4e
GM
779 (cond
780 ((null image)
781 (error "No image is present"))
dc504515 782 ((null image-multi-frame)
c0211c4e
GM
783 (message "No image animation."))
784 (t
dc504515
GM
785 (image-show-frame image
786 (if relative
787 (+ n (image-current-frame image))
788 (1- n)))))))
c0211c4e
GM
789
790(defun image-next-frame (&optional n)
791 "Switch to the next frame of a multi-frame image.
792With optional argument N, switch to the Nth frame after the current one.
793If N is negative, switch to the Nth frame before the current one."
794 (interactive "p")
795 (image-goto-frame n t))
796
797(defun image-previous-frame (&optional n)
798 "Switch to the previous frame of a multi-frame image.
799With optional argument N, switch to the Nth frame before the current one.
800If N is negative, switch to the Nth frame after the current one."
801 (interactive "p")
802 (image-next-frame (- n)))
803
18af70d0 804\f
20de6ab6
CW
805;;; Switching to the next/previous image
806
807(defun image-next-file (&optional n)
808 "Visit the next image in the same directory as the current image file.
809With optional argument N, visit the Nth image file after the
810current one, in cyclic alphabetical order.
811
812This command visits the specified file via `find-alternate-file',
813replacing the current Image mode buffer."
814 (interactive "p")
815 (unless (derived-mode-p 'image-mode)
816 (error "The buffer is not in Image mode"))
817 (unless buffer-file-name
818 (error "The current image is not associated with a file"))
819 (let* ((file (file-name-nondirectory buffer-file-name))
820 (images (image-mode--images-in-directory file))
821 (idx 0))
822 (catch 'image-visit-next-file
823 (dolist (f images)
824 (if (string= f file)
825 (throw 'image-visit-next-file (1+ idx)))
826 (setq idx (1+ idx))))
827 (setq idx (mod (+ idx (or n 1)) (length images)))
828 (find-alternate-file (nth idx images))))
829
830(defun image-previous-file (&optional n)
831 "Visit the preceding image in the same directory as the current file.
832With optional argument N, visit the Nth image file preceding the
833current one, in cyclic alphabetical order.
834
835This command visits the specified file via `find-alternate-file',
836replacing the current Image mode buffer."
837 (interactive "p")
838 (image-next-file (- n)))
839
840(defun image-mode--images-in-directory (file)
841 (let* ((dir (file-name-directory buffer-file-name))
842 (files (directory-files dir nil
843 (image-file-name-regexp) t)))
844 ;; Add the current file to the list of images if necessary, in
845 ;; case it does not match `image-file-name-regexp'.
846 (unless (member file files)
847 (push file files))
848 (sort files 'string-lessp)))
849
850\f
137187c8 851;;; Support for bookmark.el
e44fa724
KF
852(declare-function bookmark-make-record-default
853 "bookmark" (&optional no-file no-context posn))
43f8b275
SM
854(declare-function bookmark-prop-get "bookmark" (bookmark prop))
855(declare-function bookmark-default-handler "bookmark" (bmk))
137187c8 856
43f8b275 857(defun image-bookmark-make-record ()
f12492c8
TV
858 `(,@(bookmark-make-record-default nil 'no-context 0)
859 (image-type . ,image-type)
860 (handler . image-bookmark-jump)))
137187c8 861
137187c8
TH
862;;;###autoload
863(defun image-bookmark-jump (bmk)
03e26a79 864 ;; This implements the `handler' function interface for record type
e0385bf4 865 ;; returned by `bookmark-make-record-function', which see.
43f8b275
SM
866 (prog1 (bookmark-default-handler bmk)
867 (when (not (string= image-type (bookmark-prop-get bmk 'image-type)))
868 (image-toggle-display))))
97666703 869\f
c7f514b5 870
b4ac6e8c 871;; Not yet implemented.
7102e6d0
WJ
872;; (defvar image-transform-minor-mode-map
873;; (let ((map (make-sparse-keymap)))
874;; ;; (define-key map [(control ?+)] 'image-scale-in)
875;; ;; (define-key map [(control ?-)] 'image-scale-out)
876;; ;; (define-key map [(control ?=)] 'image-scale-none)
877;; ;; (define-key map "c f h" 'image-scale-fit-height)
878;; ;; (define-key map "c ]" 'image-rotate-right)
879;; map)
880;; "Minor mode keymap `image-transform-mode'.")
881;;
882;; (define-minor-mode image-transform-mode
883;; "Minor mode for scaling and rotating images.
884;; With a prefix argument ARG, enable the mode if ARG is positive,
885;; and disable it otherwise. If called from Lisp, enable the mode
886;; if ARG is omitted or nil. This minor mode requires Emacs to have
887;; been compiled with ImageMagick support."
888;; nil "image-transform" image-transform-minor-mode-map)
b4ac6e8c
GM
889
890
891;; FIXME this doesn't seem mature yet. Document in manual when it is.
a32d4040
CY
892(defvar image-transform-resize nil
893 "The image resize operation.
894Its value should be one of the following:
895 - nil, meaning no resizing.
896 - `fit-height', meaning to fit the image to the window height.
897 - `fit-width', meaning to fit the image to the window width.
7102e6d0 898 - A number, which is a scale factor (the default size is 1).")
c7f514b5 899
2d21d7f6
WJ
900(defvar image-transform-scale 1.0
901 "The scale factor of the image being displayed.")
902
18af70d0
CY
903(defvar image-transform-rotation 0.0
904 "Rotation angle for the image in the current Image mode buffer.")
c7f514b5 905
2d21d7f6
WJ
906(defvar image-transform-right-angle-fudge 0.0001
907 "Snap distance to a multiple of a right angle.
908There's no deep theory behind the default value, it should just
909be somewhat larger than ImageMagick's MagickEpsilon.")
910
911(defsubst image-transform-width (width height)
912 "Return the bounding box width of a rotated WIDTH x HEIGHT rectangle.
913The rotation angle is the value of `image-transform-rotation' in degrees."
914 (let ((angle (degrees-to-radians image-transform-rotation)))
915 ;; Assume, w.l.o.g., that the vertices of the rectangle have the
916 ;; coordinates (+-w/2, +-h/2) and that (0, 0) is the center of the
917 ;; rotation by the angle A. The projections onto the first axis
918 ;; of the vertices of the rotated rectangle are +- (w/2) cos A +-
919 ;; (h/2) sin A, and the difference between the largest and the
920 ;; smallest of the four values is the expression below.
921 (+ (* width (abs (cos angle))) (* height (abs (sin angle))))))
922
923;; The following comment and code snippet are from
924;; ImageMagick-6.7.4-4/magick/distort.c
925
c846da43 926;; /* Set the output image geometry to calculated 'best fit'.
2d21d7f6
WJ
927;; Yes this tends to 'over do' the file image size, ON PURPOSE!
928;; Do not do this for DePolar which needs to be exact for virtual tiling.
929;; */
930;; if ( fix_bounds ) {
931;; geometry.x = (ssize_t) floor(min.x-0.5);
932;; geometry.y = (ssize_t) floor(min.y-0.5);
933;; geometry.width=(size_t) ceil(max.x-geometry.x+0.5);
934;; geometry.height=(size_t) ceil(max.y-geometry.y+0.5);
935;; }
936
937;; Other parts of the same file show that here the origin is in the
938;; left lower corner of the image rectangle, the center of the
939;; rotation is the center of the rectangle and min.x and max.x
940;; (resp. min.y and max.y) are the smallest and the largest of the
941;; projections of the vertices onto the first (resp. second) axis.
942
943(defun image-transform-fit-width (width height length)
944 "Return (w . h) so that a rotated w x h image has exactly width LENGTH.
945The rotation angle is the value of `image-transform-rotation'.
946Write W for WIDTH and H for HEIGHT. Then the w x h rectangle is
947an \"approximately uniformly\" scaled W x H rectangle, which
948currently means that w is one of floor(s W) + {0, 1, -1} and h is
949floor(s H), where s can be recovered as the value of `image-transform-scale'.
950The value of `image-transform-rotation' may be replaced by
951a slightly different angle. Currently this is done for values
952close to a multiple of 90, see `image-transform-right-angle-fudge'."
953 (cond ((< (abs (- (mod (+ image-transform-rotation 90) 180) 90))
954 image-transform-right-angle-fudge)
f58e0fd5 955 (cl-assert (not (zerop width)) t)
2d21d7f6
WJ
956 (setq image-transform-rotation
957 (float (round image-transform-rotation))
958 image-transform-scale (/ (float length) width))
959 (cons length nil))
960 ((< (abs (- (mod (+ image-transform-rotation 45) 90) 45))
961 image-transform-right-angle-fudge)
f58e0fd5 962 (cl-assert (not (zerop height)) t)
2d21d7f6
WJ
963 (setq image-transform-rotation
964 (float (round image-transform-rotation))
965 image-transform-scale (/ (float length) height))
966 (cons nil length))
967 (t
f58e0fd5 968 (cl-assert (not (and (zerop width) (zerop height))) t)
2d21d7f6
WJ
969 (setq image-transform-scale
970 (/ (float (1- length)) (image-transform-width width height)))
971 ;; Assume we have a w x h image and an angle A, and let l =
972 ;; l(w, h) = w |cos A| + h |sin A|, which is the actual width
973 ;; of the bounding box of the rotated image, as calculated by
974 ;; `image-transform-width'. The code snippet quoted above
975 ;; means that ImageMagick puts the rotated image in
976 ;; a bounding box of width L = 2 ceil((w+l+1)/2) - w.
977 ;; Elementary considerations show that this is equivalent to
978 ;; L - w being even and L-3 < l(w, h) <= L-1. In our case, L is
979 ;; the given `length' parameter and our job is to determine
980 ;; reasonable values for w and h which satisfy these
981 ;; conditions.
982 (let ((w (floor (* image-transform-scale width)))
983 (h (floor (* image-transform-scale height))))
984 ;; Let w and h as bound above. Then l(w, h) <= l(s W, s H)
985 ;; = L-1 < l(w+1, h+1) = l(w, h) + l(1, 1) <= l(w, h) + 2,
986 ;; hence l(w, h) > (L-1) - 2 = L-3.
987 (cons
988 (cond ((= (mod w 2) (mod length 2))
989 w)
990 ;; l(w+1, h) >= l(w, h) > L-3, but does l(w+1, h) <=
991 ;; L-1 hold?
992 ((<= (image-transform-width (1+ w) h) (1- length))
993 (1+ w))
994 ;; No, it doesn't, but this implies that l(w-1, h) =
995 ;; l(w+1, h) - l(2, 0) >= l(w+1, h) - 2 > (L-1) -
996 ;; 2 = L-3. Clearly, l(w-1, h) <= l(w, h) <= L-1.
997 (t
998 (1- w)))
999 h)))))
1000
1001(defun image-transform-check-size ()
977f9325
WJ
1002 "Check that the image exactly fits the width/height of the window.
1003
1004Do this for an image of type `imagemagick' to make sure that the
1005elisp code matches the way ImageMagick computes the bounding box
1006of a rotated image."
1007 (when (and (not (numberp image-transform-resize))
1008 (boundp 'image-type)
1009 (eq image-type 'imagemagick))
2d21d7f6
WJ
1010 (let ((size (image-display-size (image-get-display-property) t)))
1011 (cond ((eq image-transform-resize 'fit-width)
f58e0fd5 1012 (cl-assert (= (car size)
2d21d7f6
WJ
1013 (- (nth 2 (window-inside-pixel-edges))
1014 (nth 0 (window-inside-pixel-edges))))
1015 t))
1016 ((eq image-transform-resize 'fit-height)
f58e0fd5 1017 (cl-assert (= (cdr size)
2d21d7f6
WJ
1018 (- (nth 3 (window-inside-pixel-edges))
1019 (nth 1 (window-inside-pixel-edges))))
1020 t))))))
1021
18af70d0
CY
1022(defun image-transform-properties (spec)
1023 "Return rescaling/rotation properties for image SPEC.
1024These properties are determined by the Image mode variables
1025`image-transform-resize' and `image-transform-rotation'. The
1026return value is suitable for appending to an image spec.
e8cbec34 1027
09e80d9f 1028Rescaling and rotation properties only take effect if Emacs is
e8cbec34 1029compiled with ImageMagick support."
2d21d7f6 1030 (setq image-transform-scale 1.0)
18af70d0 1031 (when (or image-transform-resize
2d21d7f6 1032 (/= image-transform-rotation 0.0))
18af70d0
CY
1033 ;; Note: `image-size' looks up and thus caches the untransformed
1034 ;; image. There's no easy way to prevent that.
1035 (let* ((size (image-size spec t))
2d21d7f6 1036 (resized
18af70d0
CY
1037 (cond
1038 ((numberp image-transform-resize)
7102e6d0 1039 (unless (= image-transform-resize 1)
2d21d7f6
WJ
1040 (setq image-transform-scale image-transform-resize)
1041 (cons nil (floor (* image-transform-resize (cdr size))))))
1042 ((eq image-transform-resize 'fit-width)
1043 (image-transform-fit-width
1044 (car size) (cdr size)
1045 (- (nth 2 (window-inside-pixel-edges))
1046 (nth 0 (window-inside-pixel-edges)))))
18af70d0 1047 ((eq image-transform-resize 'fit-height)
2d21d7f6
WJ
1048 (let ((res (image-transform-fit-width
1049 (cdr size) (car size)
1050 (- (nth 3 (window-inside-pixel-edges))
1051 (nth 1 (window-inside-pixel-edges))))))
1052 (cons (cdr res) (car res)))))))
1053 `(,@(when (car resized)
1054 (list :width (car resized)))
1055 ,@(when (cdr resized)
1056 (list :height (cdr resized)))
1057 ,@(unless (= 0.0 image-transform-rotation)
1058 (list :rotation image-transform-rotation))))))
c7f514b5
JV
1059
1060(defun image-transform-set-scale (scale)
a32d4040
CY
1061 "Prompt for a number, and resize the current image by that amount.
1062This command has no effect unless Emacs is compiled with
1063ImageMagick support."
1064 (interactive "nScale: ")
c183f693 1065 (setq image-transform-resize scale)
a32d4040 1066 (image-toggle-display-image))
c7f514b5
JV
1067
1068(defun image-transform-fit-to-height ()
a32d4040
CY
1069 "Fit the current image to the height of the current window.
1070This command has no effect unless Emacs is compiled with
1071ImageMagick support."
c7f514b5 1072 (interactive)
a32d4040
CY
1073 (setq image-transform-resize 'fit-height)
1074 (image-toggle-display-image))
c7f514b5 1075
3a50be51 1076(defun image-transform-fit-to-width ()
a32d4040
CY
1077 "Fit the current image to the width of the current window.
1078This command has no effect unless Emacs is compiled with
1079ImageMagick support."
3a50be51 1080 (interactive)
a32d4040
CY
1081 (setq image-transform-resize 'fit-width)
1082 (image-toggle-display-image))
c7f514b5
JV
1083
1084(defun image-transform-set-rotation (rotation)
a32d4040
CY
1085 "Prompt for an angle ROTATION, and rotate the image by that amount.
1086ROTATION should be in degrees. This command has no effect unless
1087Emacs is compiled with ImageMagick support."
1088 (interactive "nRotation angle (in degrees): ")
2d21d7f6 1089 (setq image-transform-rotation (float (mod rotation 360)))
a32d4040 1090 (image-toggle-display-image))
c7f514b5 1091
c7bd5d57
RS
1092(provide 'image-mode)
1093
1094;;; image-mode.el ends here