Function: ps-print-buffer-with-faces

ps-print-buffer-with-faces is an autoloaded, interactive and byte-compiled function defined in ps-print.el.gz.

Signature

(ps-print-buffer-with-faces &optional FILENAME)

Documentation

Generate and print a PostScript image of the buffer.

Like ps-print-buffer, but includes font, color, and underline information in the generated image. This command works only if you are using a window system, so it has a way to determine color values.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
;;;###autoload
(defun ps-print-buffer-with-faces (&optional filename)
  "Generate and print a PostScript image of the buffer.
Like `ps-print-buffer', but includes font, color, and underline information in
the generated image.  This command works only if you are using a window system,
so it has a way to determine color values."
  (interactive (list (ps-print-preprint current-prefix-arg)))
  (ps-print-with-faces (point-min) (point-max) filename))