Variable: org-image-max-width

org-image-max-width is a customizable variable defined in org.el.gz.

Value

fill-column

Documentation

When non-nil, limit the displayed image width.

This setting only takes effect when org-image-actual-width is set to t or when #+ATTR* is set to t.

Possible values:
- fill-column :: limit width to fill-column
- window :: limit width to window width
- integer :: limit width to number in pixels
- float :: limit width to that fraction of window width
- nil :: do not limit image width

This variable was added, or its default value changed, in Org version
9.7.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defcustom org-image-max-width 'fill-column
  "When non-nil, limit the displayed image width.
This setting only takes effect when `org-image-actual-width' is set to
t or when #+ATTR* is set to t.

Possible values:
- `fill-column' :: limit width to `fill-column'
- `window'      :: limit width to window width
- integer       :: limit width to number in pixels
- float         :: limit width to that fraction of window width
- nil             :: do not limit image width"
  :group 'org-appearance
  :package-version '(Org . "9.7")
  :type '(choice
          (const :tag "Do not limit image width" nil)
          (const :tag "Limit to `fill-column'" fill-column)
          (const :tag "Limit to window width" window)
          (integer :tag "Limit to a number of pixels")
          (float :tag "Limit to a fraction of window width")))