Variable: doc-view-pdfdraw-program

doc-view-pdfdraw-program is a customizable variable defined in doc-view.el.gz.

Value

"mudraw"

Documentation

Name of MuPDF's program to convert PDF files to PNG.

This variable was added, or its default value changed, in Emacs 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/doc-view.el.gz
(defcustom doc-view-pdfdraw-program
  (cond
   ((executable-find "mutool") "mutool")
   ((executable-find "pdfdraw") "pdfdraw")
   ((executable-find "mudraw") "mudraw")
   (t "mudraw"))
  "Name of MuPDF's program to convert PDF files to PNG."
  :type 'file
  :version "31.1")