[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
PostScript screen images ?
Date: Wed, 4 May 1988 13:47-EDT
From: Ingemar.Hulthage@CS.CMU.EDU
Is there a reasonably easy way to produce a PostScript file
with the image of the Symbolics screen ? (Genera 7.1)
;;; In 7.1:
(defun screen-dump-to-file (filename)
(let ((hardcopy:*default-bitmap-printer* (list :file filename :lgp2)))
(tv:kbd-hardcopy-whole-screen nil)))
;;; In 7.2:
(defun screen-dump-to-file (filename)
(let ((hardcopy:*default-bitmap-printer* (list :file filename :lgp2)))
(hci::kbd-hardcopy-whole-screen nil)))
There are also functions kbd-hardcopy-selected-window and
kbd-hardcopy-screen-without-status.