Function: image-flip-horizontally

image-flip-horizontally is an interactive and byte-compiled function defined in image.el.gz.

Signature

(image-flip-horizontally)

Documentation

Horizontally flip the image under point.

View in manual

Probably introduced at or before Emacs version 29.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image.el.gz
(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)))))