Function: ps-spool-region-with-faces

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

Signature

(ps-spool-region-with-faces FROM TO)

Documentation

Generate a PostScript image of the region and spool locally.

Like ps-spool-region, 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.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
;;;###autoload
(defun ps-spool-region-with-faces (from to)
  "Generate a PostScript image of the region and spool locally.
Like `ps-spool-region', 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 "r")
  (ps-spool-with-faces from to t))