From: Matthew Leach <matthew@mattleach.net>
To: 18683@debbugs.gnu.org
Subject: bug#18683: Patch for wish-list item: 560
Date: Fri, 10 Oct 2014 23:58:44 +0100 [thread overview]
Message-ID: <87wq87ttuj.fsf@matt-desktop.home> (raw)
[-- Attachment #1: Type: text/plain, Size: 373 bytes --]
Hello,
Attached is a simple patch that adds {+-}90 degree rotation to image
mode as requested in [1].
Any comments welcome.
[1]: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=560
2014-10-10 Matthew Leach <matthew@mattleach.net>
* image-mode.el (image-mode-map): map 'r' and 'l' to rotation
functions.
(image-rotate-90-right): New method.
(image-rotate-90-left):
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: img-90-rotation.patch --]
[-- Type: text/x-diff, Size: 1222 bytes --]
diff --git a/lisp/image-mode.el b/lisp/image-mode.el
index b94162d..de75f4a 100644
--- a/lisp/image-mode.el
+++ b/lisp/image-mode.el
@@ -375,6 +375,8 @@ call."
(define-key map "f" 'image-next-frame)
(define-key map "b" 'image-previous-frame)
(define-key map "n" 'image-next-file)
+ (define-key map "r" 'image-rotate-90-right)
+ (define-key map "l" 'image-rotate-90-left)
(define-key map "p" 'image-previous-file)
(define-key map "a+" 'image-increase-speed)
(define-key map "a-" 'image-decrease-speed)
@@ -1106,6 +1108,16 @@ Emacs is compiled with ImageMagick support."
(setq image-transform-rotation (float (mod rotation 360)))
(image-toggle-display-image))
+(defun image-rotate-90-right ()
+ "Increase the rotation of the current image by 90 degrees."
+ (interactive)
+ (image-transform-set-rotation (+ image-transform-rotation 90)))
+
+(defun image-rotate-90-left ()
+ "Decrease the rotation of the current image by 90 degrees."
+ (interactive)
+ (image-transform-set-rotation (- image-transform-rotation 90)))
+
(defun image-transform-reset ()
"Display the current image with the default size and rotation.
This command has no effect unless Emacs is compiled with
[-- Attachment #3: Type: text/plain, Size: 10 bytes --]
--
Matt
next reply other threads:[~2014-10-10 22:58 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-10 22:58 Matthew Leach [this message]
2014-10-10 23:47 ` bug#18683: Patch for wish-list item: 560 Glenn Morris
2014-10-11 9:52 ` Matthew Leach
2014-10-11 11:54 ` Vitalie Spinu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87wq87ttuj.fsf@matt-desktop.home \
--to=matthew@mattleach.net \
--cc=18683@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.