Function: ps-spool-buffer-with-faces

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

Signature

(ps-spool-buffer-with-faces)

Documentation

Generate and spool a PostScript image of the buffer.

Like the command ps-spool-buffer(var)/ps-spool-buffer(fun), 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.

Use the command ps-despool to send the spooled images to the printer.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
;;;###autoload
(defun ps-spool-buffer-with-faces ()
  "Generate and spool a PostScript image of the buffer.
Like the command `ps-spool-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.

Use the command `ps-despool' to send the spooled images to the printer."
  (interactive)
  (ps-spool-with-faces (point-min) (point-max)))