Function: image-dired-display-current-image-sized

image-dired-display-current-image-sized is an interactive and byte-compiled function defined in image-dired.el.gz.

Signature

(image-dired-display-current-image-sized)

Documentation

Display current image in sized to fit window dimensions.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defun image-dired-display-current-image-sized ()
  "Display current image in sized to fit window dimensions."
  (interactive)
  (let ((file (image-dired-original-file-name)))
    (if file
        (progn
          (image-dired-display-image file)
          (message "Fitted image displayed"))
      (error "No original file name at point"))))