Function: image-dired-rotate-original-right
image-dired-rotate-original-right is an interactive and byte-compiled
function defined in image-dired.el.gz.
Signature
(image-dired-rotate-original-right)
Documentation
Rotate original image right (clockwise) 90 degrees.
The result of the rotation is displayed in the image display area
and a confirmation is needed before the original image files is
overwritten. This confirmation can be turned off using
image-dired-rotate-original-ask-before-overwrite.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/image/image-dired.el.gz
(defun image-dired-rotate-original-right ()
"Rotate original image right (clockwise) 90 degrees.
The result of the rotation is displayed in the image display area
and a confirmation is needed before the original image files is
overwritten. This confirmation can be turned off using
`image-dired-rotate-original-ask-before-overwrite'."
(interactive nil image-dired-thumbnail-mode)
(image-dired--with-marked
(image-dired-rotate-original "90")))