Variable: image-dired-thumb-size

image-dired-thumb-size is a customizable variable defined in image-dired.el.gz.

Value

100

Documentation

Size of thumbnails, in pixels.

This is the default size for both image-dired-thumb-width and image-dired-thumb-height.

The value of this option will be ignored if Image Dired is customized to use the Thumbnail Managing Standard; the standard sizes will be used instead. See image-dired-thumbnail-storage.

Source Code

;; Defined in /usr/src/emacs/lisp/image-dired.el.gz
(defcustom image-dired-thumb-size
  (cond
   ((eq 'standard image-dired-thumbnail-storage) 128)
   ((eq 'standard-large image-dired-thumbnail-storage) 256)
   (t 100))
  "Size of thumbnails, in pixels.
This is the default size for both `image-dired-thumb-width'
and `image-dired-thumb-height'.

The value of this option will be ignored if Image Dired is
customized to use the Thumbnail Managing Standard; the standard
sizes will be used instead.  See `image-dired-thumbnail-storage'."
  :type 'integer)