Variable: gravatar-size
gravatar-size is a customizable variable defined in gravatar.el.gz.
Value
32
Documentation
Gravatar size in pixels to request.
Valid sizes range from 1 to 2048 inclusive. If nil, use the Gravatar default (usually 80).
This variable was added, or its default value changed, in Emacs 27.1.
Probably introduced at or before Emacs version 27.1.
Source Code
;; Defined in /usr/src/emacs/lisp/image/gravatar.el.gz
(defcustom gravatar-size 32
"Gravatar size in pixels to request.
Valid sizes range from 1 to 2048 inclusive. If nil, use the
Gravatar default (usually 80)."
:type '(choice (const :tag "Gravatar default" nil)
(integer :tag "Pixels"))
:version "27.1"
:group 'gravatar)