Function: ps-print-region-with-faces

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

Signature

(ps-print-region-with-faces FROM TO &optional FILENAME)

Documentation

Generate and print a PostScript image of the region.

Like ps-print-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.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/ps-print.el.gz
;;;###autoload
(defun ps-print-region-with-faces (from to &optional filename)
  "Generate and print a PostScript image of the region.
Like `ps-print-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."
  (interactive (ps-print-preprint-region current-prefix-arg))
  (ps-print-with-faces from to filename t))