Variable: mh-x-image-scaling-function
mh-x-image-scaling-function is a variable defined in mh-xface.el.gz.
Value
ignore
Documentation
Function to use to scale image to proper size.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-xface.el.gz
;;; X-Image-URL Display
(defvar mh-x-image-scaling-function
(cond ((executable-find "convert")
'mh-x-image-scale-with-convert)
((and (executable-find "anytopnm") (executable-find "pnmscale")
(executable-find "pnmtopng"))
'mh-x-image-scale-with-pnm)
(t 'ignore))
"Function to use to scale image to proper size.")