1GS(1) Ghostscript GS(1)
2
3
4
6 gs - Ghostscript (PostScript and PDF language interpreter and pre‐
7 viewer)
8
10 gs [ options ] [ files ] ... (Unix, VMS)
11 gswin32c [ options ] [ files ] ... (MS Windows)
12 gswin32 [ options ] [ files ] ... (MS Windows 3.1)
13 gsos2 [ options ] [ files ] ... (OS/2)
14
16 The gs (gswin32c, gswin32, gsos2) command invokes Ghostscript, an
17 interpreter of Adobe Systems' PostScript(tm) and Portable Document For‐
18 mat (PDF) languages. gs reads "files" in sequence and executes them as
19 Ghostscript programs. After doing this, it reads further input from the
20 standard input stream (normally the keyboard), interpreting each line
21 separately and output to an output device (may be a file or an X11 win‐
22 dow preview, see below). The interpreter exits gracefully when it
23 encounters the "quit" command (either in a file or from the keyboard),
24 at end-of-file, or at an interrupt signal (such as Control-C at the
25 keyboard).
26
27 The interpreter recognizes many option switches, some of which are
28 described below. Please see the usage documentation for complete infor‐
29 mation. Switches may appear anywhere in the command line and apply to
30 all files thereafter. Invoking Ghostscript with the -h or -? switch
31 produces a message which shows several useful switches, all the devices
32 known to that executable, and the search path for fonts; on Unix it
33 also shows the location of detailed documentation.
34
35 Ghostscript may be built to use many different output devices. To see
36 which devices your executable includes, run "gs -h".
37
38 Unless you specify a particular device, Ghostscript normally opens the
39 first one of those and directs output to it.
40
41 If built with X11 support, often the default device is an X11 window
42 (previewer), else ghostscript will typically use the bbox device and
43 print on stdout the dimension of the postscript file.
44
45 So if the first one in the list is the one you want to use, just issue
46 the command
47
48 gs myfile.ps
49
50 You can also check the set of available devices from within Ghost‐
51 script: invoke Ghostscript and type
52
53 devicenames ==
54
55 but the first device on the resulting list may not be the default
56 device you determine with "gs -h". To specify "AbcXyz" as the initial
57 output device, include the switch
58
59 -sDEVICE=AbcXyz
60
61 For example, for output to an Epson printer you might use the command
62
63 gs -sDEVICE=epson myfile.ps
64
65 The "-sDEVICE=" switch must precede the first mention of a file to
66 print, and only the switch's first use has any effect.
67
68 Finally, you can specify a default device in the environment variable
69 GS_DEVICE. The order of precedence for these alternatives from highest
70 to lowest (Ghostscript uses the device defined highest in the list) is:
71
72 Some devices can support different resolutions (densities). To specify
73 the resolution on such a printer, use the "-r" switch:
74
75 gs -sDEVICE=<device> -r<xres>x<yres>
76
77 For example, on a 9-pin Epson-compatible printer, you get the lowest-
78 density (fastest) mode with
79
80 gs -sDEVICE=epson -r60x72
81
82 and the highest-density (best output quality) mode with
83
84 gs -sDEVICE=epson -r240x72.
85
86 If you select a printer as the output device, Ghostscript also allows
87 you to choose where Ghostscript sends the output -- on Unix systems,
88 usually to a temporary file. To send the output to a file "foo.xyz",
89 use the switch
90
91 -sOutputFile=foo.xyz
92
93 You might want to print each page separately. To do this, send the
94 output to a series of files "foo1.xyz, foo2.xyz, ..." using the "-sOut‐
95 putFile=" switch with "%d" in a filename template:
96
97 -sOutputFile=foo%d.xyz
98
99 Each resulting file receives one page of output, and the files are num‐
100 bered in sequence. "%d" is a printf format specification; you can also
101 use a variant like "%02d".
102
103 On Unix and MS Windows systems you can also send output to a pipe. For
104 example, to pipe output to the "lpr" command (which, on many Unix sys‐
105 tems, directs it to a printer), use the option
106
107 -sOutputFile=%pipe%lpr
108
109 Note that the '%' characters need to be doubled on MS Windows to avoid
110 mangling by the command interpreter.
111
112 You can also send output to standard output:
113
114 -sOutputFile=-
115 or
116 -sOutputFile=%stdout%
117
118 In this case you must also use the -q switch, to prevent Ghostscript
119 from writing messages to standard output.
120
121 To select a specific paper size, use the command line switch
122
123 -sPAPERSIZE=<paper_size>
124
125 for instance
126
127 -sPAPERSIZE=a4
128 or
129 -sPAPERSIZE=legal
130
131 Most ISO and US paper sizes are recognized. See the usage documentation
132 for a full list, or the definitions in the initialization file
133 "gs_statd.ps".
134
135 Ghostscript can do many things other than print or view PostScript and
136 PDF files. For example, if you want to know the bounding box of a
137 PostScript (or EPS) file, Ghostscript provides a special "device" that
138 just prints out this information.
139
140 For example, using one of the example files distributed with Ghost‐
141 script,
142
143 gs -sDEVICE=bbox golfer.ps
144
145 prints out
146
147 %%BoundingBox: 0 25 583 732
148 %%HiResBoundingBox: 0.808497 25.009496 582.994503 731.809445
149
151 -- filename arg1 ...
152 Takes the next argument as a file name as usual, but takes all
153 remaining arguments (even if they have the syntactic form of
154 switches) and defines the name "ARGUMENTS" in "userdict" (not
155 "systemdict") as an array of those strings, before running the
156 file. When Ghostscript finishes executing the file, it exits
157 back to the shell.
158
159 -Dname=token
160 -dname=token
161 Define a name in "systemdict" with the given definition. The
162 token must be exactly one token (as defined by the "token" oper‐
163 ator) and may contain no whitespace.
164
165 -Dname
166 -dname Define a name in "systemdict" with value=null.
167
168 -Sname=string
169 -sname=string
170 Define a name in "systemdict" with a given string as value.
171 This is different from -d. For example, -dname=35 is equivalent
172 to the program fragment
173 /name 35 def
174 whereas -sname=35 is equivalent to
175 /name (35) def
176
177 -P Makes Ghostscript to look first in the current directory for
178 library files. By default, Ghostscript no longer looks in the
179 current directory, unless, of course, the first explicitly sup‐
180 plied directory is "." in -I. See also the INITIALIZATION FILES
181 section below, and bundled Use.htm for detailed discussion on
182 search paths and how Ghostcript finds files.
183
184 -q Quiet startup: suppress normal startup messages, and also do the
185 equivalent of -dQUIET.
186
187 -gnumber1xnumber2
188 Equivalent to -dDEVICEWIDTH=number1 and -dDEVICEHEIGHT=number2.
189 This is for the benefit of devices (such as X11 windows) that
190 require (or allow) width and height to be specified.
191
192 -rnumber
193 -rnumber1xnumber2
194 Equivalent to -dDEVICEXRESOLUTION=number1 and -dDEVICEYRESOLU‐
195 TION=number2. This is for the benefit of devices such as print‐
196 ers that support multiple X and Y resolutions. If only one num‐
197 ber is given, it is used for both X and Y resolutions.
198
199 -Idirectories
200 Adds the designated list of directories at the head of the
201 search path for library files.
202
203 - This is not really a switch, but indicates to Ghostscript that
204 standard input is coming from a file or a pipe and not interac‐
205 tively from the command line. Ghostscript reads from standard
206 input until it reaches end-of-file, executing it like any other
207 file, and then continues with processing the command line. When
208 the command line has been entirely processed, Ghostscript exits
209 rather than going into its interactive mode.
210
211 Note that the normal initialization file "gs_init.ps" makes "system‐
212 dict" read-only, so the values of names defined with -D, -d, -S, or -s
213 cannot be changed (although, of course, they can be superseded by defi‐
214 nitions in "userdict" or other dictionaries.)
215
217 -dNOCACHE
218 Disables character caching. Useful only for debugging.
219
220 -dNOBIND
221 Disables the "bind" operator. Useful only for debugging.
222
223 -dNODISPLAY
224 Suppresses the normal initialization of the output device. This
225 may be useful when debugging.
226
227 -dNOPAUSE
228 Disables the prompt and pause at the end of each page. This may
229 be desirable for applications where another program is driving
230 Ghostscript.
231
232 -dNOPLATFONTS
233 Disables the use of fonts supplied by the underlying platform
234 (for instance X Windows). This may be needed if the platform
235 fonts look undesirably different from the scalable fonts.
236
237 -dSAFER
238 Restricts file operations the job can perform. Strongly recom‐
239 mended for spoolers, conversion scripts or other sensitive envi‐
240 ronments where a badly written or malicious PostScript program
241 code must be prevented from changing important files.
242
243 -dWRITESYSTEMDICT
244 Leaves "systemdict" writable. This is necessary when running
245 special utility programs, but is strongly discouraged as it
246 bypasses normal Postscript security measures.
247
248 -sDEVICE=device
249 Selects an alternate initial output device, as described above.
250
251 -sOutputFile=filename
252 Selects an alternate output file (or pipe) for the initial out‐
253 put device, as described above.
254
256 The -dSAFER option disables the "deletefile" and "renamefile" operators
257 and prohibits opening piped commands ("%pipe%cmd"). Only "%stdout" and
258 "%stderr" can be opened for writing. It also disables reading from
259 files, except for "%stdin", files given as a command line argument, and
260 files contained in paths given by LIBPATH and FONTPATH or specified by
261 the system params /FontResourceDir and /GenericResourceDir.
262
263 This mode also sets the .LockSafetyParams parameter of the initial out‐
264 put device to protect against programs that attempt to write to files
265 using the OutputFile device parameter. Since the device parameters
266 specified on the command line, including OutputFile, are set prior to
267 SAFER mode, use of "-sOutputFile=..." on the command line is unre‐
268 stricted.
269
270 SAFER mode prevents changing the /GenericResourceDir, /FontResourceDir,
271 /SystemParamsPassword, and /StartJobPassword.
272
273 While SAFER mode is not the default, it is the default for many wrapper
274 scripts such as ps2pdf and may be the default in a subsequent release
275 of Ghostscript. Thus when running programs that need to open files or
276 set restricted parameters you should pass the -dNOSAFER command line
277 option or its synonym -dDELAYSAFER.
278
279 When running with -dNOSAFER it is possible to perform a "save" followed
280 by ".setsafe", execute a file or procedure in SAFER mode, and then use
281 "restore" to return to NOSAFER mode. In order to prevent the save
282 object from being restored by the foreign file or procedure, the
283 ".runandhide" operator should be used to hide the save object from the
284 restricted procedure.
285
287 The locations of many Ghostscript run-time files are compiled into the
288 executable when it is built. On Unix these are typically based in
289 /usr/local, but this may be different on your system. Under DOS they
290 are typically based in C:\GS, but may be elsewhere, especially if you
291 install Ghostscript with GSview. Run "gs -h" to find the location of
292 Ghostscript documentation on your system, from which you can get more
293 details.
294
295 /usr/local/share/ghostscript/#.##/*
296 Startup files, utilities, and basic font definitions
297
298 /usr/local/share/ghostscript/fonts/*
299 More font definitions
300
301 /usr/local/share/ghostscript/#.##/examples/*
302 Ghostscript demonstration files
303
304 /usr/local/share/ghostscript/#.##/doc/*
305 Diverse document files
306
308 When looking for the initialization files "gs_*.ps", the files related
309 to fonts, or the file for the "run" operator, Ghostscript first tries
310 to open the file with the name as given, using the current working
311 directory if no directory is specified. If this fails, and the file
312 name doesn't specify an explicit directory or drive (for instance,
313 doesn't contain "/" on Unix systems or "\" on MS Windows systems),
314 Ghostscript tries directories in this order:
315
316 1. the directories specified by the -I switches in the command line
317 (see below), if any;
318
319 2. the directories specified by the GS_LIB environment variable, if
320 any;
321
322 3. the directories specified by the GS_LIB_DEFAULT macro in the Ghost‐
323 script makefile when the executable was built. When gs is built on
324 Unix, GS_LIB_DEFAULT is usually "/usr/local/share/ghost‐
325 script/#.##:/usr/local/share/ghostscript/fonts" where "#.##" repre‐
326 sents the Ghostscript version number.
327
328 Each of these (GS_LIB_DEFAULT, GS_LIB, and -I parameter) may be either
329 a single directory or a list of directories separated by ":".
330
332 GS_OPTIONS
333 String of options to be processed before the command line
334 options
335
336 GS_DEVICE
337 Used to specify an output device
338
339 GS_FONTPATH
340 Path names used to search for fonts
341
342 GS_LIB Path names for initialization files and fonts
343
344 TEMP Where temporary files are made
345
347 Ghostscript, or more properly the X11 display device, looks for the
348 following resources under the program name "Ghostscript":
349
350 borderWidth
351 The border width in pixels (default = 1).
352
353 borderColor
354 The name of the border color (default = black).
355
356 geometry
357 The window size and placement, WxH+X+Y (default is NULL).
358
359 xResolution
360 The number of x pixels per inch (default is computed from
361 WidthOfScreen and WidthMMOfScreen).
362
363 yResolution
364 The number of y pixels per inch (default is computed from
365 HeightOfScreen and HeightMMOfScreen).
366
367 useBackingPixmap
368 Determines whether backing store is to be used for saving dis‐
369 play window (default = true).
370
371 See the usage document for a more complete list of resources. To set
372 these resources on Unix, put them in a file such as "~/.Xresources" in
373 the following form:
374
375 Ghostscript*geometry: 612x792-0+0
376 Ghostscript*xResolution: 72
377 Ghostscript*yResolution: 72
378
379 Then merge these resources into the X server's resource database:
380
381 % xrdb -merge ~/.Xresources
382
384 The various Ghostscript document files (above), especially Use.htm.
385
387 See http://bugs.ghostscript.com/ and the Usenet news group
388 comp.lang.postscript.
389
391 This document was last revised for Ghostscript version 9.27.
392
394 Artifex Software, Inc. are the primary maintainers of Ghostscript.
395 Russell J. Lang, gsview at ghostgum.com.au, is the author of most of
396 the MS Windows code in Ghostscript.
397
398
399
4009.27 4 April 2019 GS(1)