1xpdfrc(5)                                                            xpdfrc(5)
2
3
4
5NAME
6       xpdfrc - configuration file for Xpdf tools (version 3.04)
7
8DESCRIPTION
9       All  of the Xpdf tools read a single configuration file.  If you have a
10       .xpdfrc file in your home directory, it will  be  read.   Otherwise,  a
11       system-wide configuration file will be read from /usr/local/etc/xpdfrc,
12       if it exists.  (This  is  its  default  location;  depending  on  build
13       options,  it  may  be  placed elsewhere.)  On Win32 systems, the xpdfrc
14       file should be placed in the same directory as the executables.
15
16       The xpdfrc file consists of a series of configuration options, one  per
17       line.   Blank  lines  and  lines  starting  with  a  '#' (comments) are
18       ignored.
19
20       Arguments may be quoted, using  "double-quote"  characters,  e.g.,  for
21       file names that contain spaces.
22
23       The  following  sections  list all of the configuration options, sorted
24       into functional groups.  There is an examples section at the end.
25
26INCLUDE FILES
27       include config-file
28              Includes the specified config  file.   The  effect  of  this  is
29              equivalent  to  inserting  the  contents of config-file directly
30              into the parent config file in place  of  the  include  command.
31              Config files can be nested arbitrarily deeply.
32
33CHARACTER MAPPING
34       nameToUnicode map-file
35              Specifies  a  file with the mapping from character names to Uni-
36              code.  This is used to handle PDF fonts that have  valid  encod-
37              ings  but no ToUnicode entry.  Each line of a nameToUnicode file
38              looks like this:
39
40                   hex-string name
41
42              The hex-string is the Unicode (UCS-2) character index, and  name
43              is  the  corresponding  character  name.  Multiple nameToUnicode
44              files can be used; if a character name is given more than  once,
45              the  code in the last specified file is used.  There is a built-
46              in default nameToUnicode table  with  all  of  Adobe's  standard
47              character names.
48
49       cidToUnicode registry-ordering map-file
50              Specifies the file with the mapping from character collection to
51              Unicode.  Each line of a cidToUnicode file represents one  char-
52              acter:
53
54                   hex-string
55
56              The  hex-string is the Unicode (UCS-2) index for that character.
57              The first line maps CID 0, the second line  CID  1,  etc.   File
58              size  is  determined  by size of the character collection.  Only
59              one file is allowed per character collection; the last specified
60              file is used.  There are no built-in cidToUnicode mappings.
61
62       unicodeToUnicode font-name-substring map-file
63              This  is used to work around PDF fonts which have incorrect Uni-
64              code information.  It specifies a file which maps from the given
65              (incorrect)  Unicode  indexes  to the correct ones.  The mapping
66              will be used for any font  whose  name  contains  font-name-sub-
67              string.   Each  line  of  a unicodeToUnicode file represents one
68              Unicode character:
69
70                  in-hex out-hex1 out-hex2 ...
71
72              The in-hex field is an input (incorrect) Unicode index, and  the
73              rest  of  the  fields  are  one or more output (correct) Unicode
74              indexes.  Each occurrence of in-hex will  be  converted  to  the
75              specified output sequence.
76
77       unicodeMap encoding-name map-file
78              Specifies  the  file with mapping from Unicode to encoding-name.
79              These encodings are used for text output (see below).  Each line
80              of  a  unicodeMap file represents a range of one or more Unicode
81              characters which maps linearly to a range in the  output  encod-
82              ing:
83
84                   in-start-hex in-end-hex out-start-hex
85
86              Entries for single characters can be abbreviated to:
87
88                   in-hex out-hex
89
90              The  in-start-hex  and  in-end-hex  fields (or the single in-hex
91              field) specify the Unicode range.  The out-start-hex  field  (or
92              the  out-hex  field)  specifies the start of the output encoding
93              range.  The length of  the  out-start-hex  (or  out-hex)  string
94              determines the length of the output characters (e.g., UTF-8 uses
95              different numbers of bytes to represent characters in  different
96              ranges).   Entries  must  be  given in increasing Unicode order.
97              Only one file is allowed per encoding; the last  specified  file
98              is  used.   The Latin1, ASCII7, Symbol, ZapfDingbats, UTF-8, and
99              UCS-2 encodings are predefined.
100
101       cMapDir registry-ordering dir
102              Specifies a search  directory,  dir,  for  CMaps  for  the  reg-
103              istry-ordering  character  collection.   There  can  be multiple
104              directories for a particular collection.  There are  no  default
105              CMap directories.
106
107       toUnicodeDir dir
108              Specifies  a  search directory, dir, for ToUnicode CMaps.  There
109              can be multiple ToUnicode directories.   There  are  no  default
110              ToUnicode directories.
111
112GENERAL FONT CONFIGURATION
113       fontFile PDF-font-name font-file
114              Maps  a  PDF font, PDF-font-name, to a font for display or Post-
115              Script output.  The  font  file,  font-file,  can  be  any  type
116              allowed  in  a  PDF file.  This command can be used for 8-bit or
117              16-bit (CID) fonts.
118
119       fontDir dir
120              Specifies a search directory for font files.  There can be  mul-
121              tiple fontDir commands; all of the specified directories will be
122              searched in order.  The font files can be Type 1 (.pfa or  .pfb)
123              or TrueType (.ttf or .ttc); other files in the directory will be
124              ignored.  The font file name (not including the extension)  must
125              exactly  match  the  PDF font name.  This search is performed if
126              the font name doesn't match any of the fonts declared  with  the
127              fontFile command.  There are no default fontDir directories.
128
129       fontFileCC registry-ordering font-file
130              Maps  the  registry-ordering  character collection to a font for
131              display or PostScript output.  This mapping is used if the  font
132              name  doesn't match any of the fonts declared with the fontFile,
133              fontDir, psResidentFont16, or psResidentFontCC commands.
134
135POSTSCRIPT FONT CONFIGURATION
136       psFontPassthrough yes | no
137              If set to "yes", pass 8-bit font names through to the PostScript
138              output  without  substitution.   Fonts which are not embedded in
139              the PDF file are expected to be available on the printer.   This
140              defaults to "no".
141
142       psResidentFont PDF-font-name PS-font-name
143              When the 8-bit font PDF-font-name is used (without embedding) in
144              a PDF file,  it  will  be  translated  to  the  PostScript  font
145              PS-font-name,  which  is  assumed to be resident in the printer.
146              Typically, PDF-font-name and  PS-font-name  are  the  same.   By
147              default, only the Base-14 fonts are assumed to be resident.
148
149       psResidentFont16 PDF-font-name wMode PS-font-name encoding
150              When the 16-bit (CID) font PDF-font-name with writing mode wMode
151              is used (without embedding) in a PDF file, it will be translated
152              to  the  PostScript  font  PS-font-name, which is assumbed to be
153              resident in the printer.  The writing mode must  be  either  'H'
154              for  horizontal  or  'V'  for  vertical.   The  resident font is
155              assumed to use the specified  encoding  (which  must  have  been
156              defined with the unicodeMap command).
157
158       psResidentFontCC registry-ordering wMode PS-font-name encoding
159              When  a  16-bit (CID) font using the registry-ordering character
160              collection and wMode writing mode is used (without embedding) in
161              a  PDF  file,  the PostScript font, PS-font-name, is substituted
162              for it.  The substituted font is assumbed to be resident in  the
163              printer.   The writing mode must be either 'H' for horizontal or
164              'V' for vertical.  The resident font is assumed to use the spec-
165              ified encoding (which must have been defined with the unicodeMap
166              command).
167
168       psEmbedType1Fonts yes | no
169              If set to "no", prevents embedding of Type 1 fonts in  generated
170              PostScript.  This defaults to "yes".
171
172       psEmbedTrueTypeFonts yes | no
173              If  set  to "no", prevents embedding of TrueType fonts in gener-
174              ated PostScript.  This defaults to "yes".
175
176       psEmbedCIDTrueTypeFonts yes | no
177              If set to "no", prevents embedding of CID TrueType fonts in gen-
178              erated PostScript.  For Level 3 PostScript, this generates a CID
179              font, for lower levels it generates a  non-CID  composite  font.
180              This defaults to "yes".
181
182       psEmbedCIDPostScriptFonts yes | no
183              If  set  to  "no", prevents embedding of CID PostScript fonts in
184              generated PostScript.  For Level 3 PostScript, this generates  a
185              CID  font,  for  lower  levels  it generates a non-CID composite
186              font.  This defaults to "yes".
187
188POSTSCRIPT CONTROL
189       psPaperSize width(pts) height(pts)
190              Sets the paper size for PostScript output.  The width and height
191              parameters  give  the paper size in PostScript points (1 point =
192              1/72 inch).
193
194       psPaperSize letter | legal | A4 | A3 | match
195              Sets the paper size for PostScript output to  a  standard  size.
196              The  default  paper size is set when xpdf and pdftops are built,
197              typically to "letter" or "A4".  This can also be set to "match",
198              which will set the paper size to match the size specified in the
199              PDF file.
200
201       psImageableArea llx lly urx ury
202              Sets the imageable area for PostScript output.  The  four  inte-
203              gers  are the coordinates of the lower-left and upper-right cor-
204              ners of the imageable region, specified in points (with the ori-
205              gin being the lower-left corner of the paper).  This defaults to
206              the full paper size;  the  psPaperSize  option  will  reset  the
207              imageable area coordinates.
208
209       psCrop yes | no
210              If  set  to  "yes",  PostScript output is cropped to the CropBox
211              specified in the PDF file; otherwise no cropping is done.   This
212              defaults to "yes".
213
214       psUseCropBoxAsPage yes | no
215              If  set  to  "yes",  PostScript output treats the CropBox as the
216              page size.  By default, this is "no", and the MediaBox  is  used
217              as the page size.
218
219       psExpandSmaller yes | no
220              If set to "yes", PDF pages smaller than the PostScript imageable
221              area are expanded to fill the  imageable  area.   Otherwise,  no
222              scalling is done on smaller pages.  This defaults to "no".
223
224       psShrinkLarger yes | no
225              If  set  to  yes, PDF pages larger than the PostScript imageable
226              area are shrunk to fit the imageable area.  Otherwise, no  scal-
227              ing is done on larger pages.  This defaults to "yes".
228
229       psCenter yes | no
230              If  set  to yes, PDF pages smaller than the PostScript imageable
231              area (after any scaling) are centered  in  the  imageable  area.
232              Otherwise,  they  are  aligned  at  the lower-left corner of the
233              imageable area.  This defaults to "yes".
234
235       psDuplex yes | no
236              If set to "yes", the generated PostScript will set the  "Duplex"
237              pagedevice  entry.  This tells duplex-capable printers to enable
238              duplexing.  This defaults to "no".
239
240       psLevel level1 | level1sep | level2 | level2sep | level3 | level3Sep
241              Sets  the  PostScript  level  to  generate.   This  defaults  to
242              "level2".
243
244       psPreload yes | no
245              If  set  to "yes", PDF forms are converted to PS procedures, and
246              image data is preloaded.  This uses more  memory  in  the  Post-
247              Script interpreter, but generates significantly smaller PS files
248              in situations where, e.g., the same image is drawn on every page
249              of a long document.  This defaults to "no".
250
251       psOPI yes | no
252              If  set  to  "yes",  generates  PostScript  OPI comments for all
253              images and forms which have OPI  information.   This  option  is
254              only available if the Xpdf tools were compiled with OPI support.
255              This defaults to "no".
256
257       psASCIIHex yes | no
258              If set to "yes", the ASCIIHexEncode filter will be used  instead
259              of ASCII85Encode for binary data.  This defaults to "no".
260
261       psLZW yes | no
262              If  set to "yes", the LZWEncode filter will be used for lossless
263              compression in PostScript output; if set to "no", the RunLength-
264              Encode  filter  will be used instead.  LZW generates better com-
265              pression (smaller PS files), but may not be  supported  by  some
266              printers.  This defaults to "yes".
267
268       psUncompressPreloadedImages yes | no
269              If  set  to  "yes", all preloaded images in PS files will uncom-
270              pressed.  If set to "no", the original compressed images will be
271              used  when possible.  The "yes" setting is useful to work around
272              certain buggy PostScript interpreters.  This defaults to "no".
273
274       psMinLineWidth float
275              Set the minimum line width, in points,  for  PostScript  output.
276              The default value is 0 (no minimum).
277
278       psRasterResolution float
279              Set  the  resolution (in dpi) for rasterized pages in PostScript
280              output.  (Pdftops will rasterize pages which use  transparency.)
281              This defaults to 300.
282
283       psRasterMono yes | no
284              If set to "yes", rasterized pages in PS files will be monochrome
285              (8-bit gray) instead of color.  This defaults to "no".
286
287       psRasterSliceSize pixels
288              When rasterizing pages, pdftops splits the page into  horizontal
289              "slices",  to  limit memory usage.  This option sets the maximum
290              slice size, in pixels.  This defaults to 20000000 (20 million).
291
292       psAlwaysRasterize yes | no
293              If set to "yes", all PostScript output will be rasterized.  This
294              defaults to "no".
295
296       psFile file-or-command
297              Sets  the  default  PostScript  file  or print command for xpdf.
298              Commands start with a '|' character; anything else  is  a  file.
299              If  the  file name or command contains spaces it must be quoted.
300              This defaults to unset, which tells xpdf to generate a  name  of
301              the form <file>.ps for a PDF file <file>.pdf.
302
303       fontDir dir
304              See the description above, in the DISPLAY FONTS section.
305
306TEXT CONTROL
307       textEncoding encoding-name
308              Sets the encoding to use for text output.  (This can be overrid-
309              den with the "-enc" switch on the  command  line.)   The  encod-
310              ing-name  must  be  defined  with  the  unicodeMap  command (see
311              above).  This defaults to "Latin1".
312
313       textEOL unix | dos | mac
314              Sets the end-of-line convention to use  for  text  output.   The
315              options are:
316
317                  unix = LF
318                  dos  = CR+LF
319                  mac  = CR
320
321              (This  can  be  overridden with the "-eol" switch on the command
322              line.)  The default value is based on  the  OS  where  xpdf  and
323              pdftotext were built.
324
325       textPageBreaks yes | no
326              If  set  to "yes", text extraction will insert page breaks (form
327              feed characters) between pages.  This defaults to "yes".
328
329       textKeepTinyChars yes | no
330              If set to "yes", text extraction will keep all  characters.   If
331              set  to  "no", text extraction will discard tiny (smaller than 3
332              point) characters after  the  first  50000  per  page,  avoiding
333              extremely slow run times for PDF files that use special fonts to
334              do shading or cross-hatching.  This defaults to "yes".
335
336MISCELLANEOUS SETTINGS
337       initialZoom percentage | page | width
338              Sets the initial zoom factor.  A number specifies  a  zoom  per-
339              centage,  where  100 means 72 dpi.  You may also specify 'page',
340              to fit the page to the window size, or 'width', to fit the  page
341              width to the window width.
342
343       continuousView yes | no
344              If  set to "yes", xpdf will start in continuous view mode, i.e.,
345              with one vertical screoll bar  for  the  whole  document.   This
346              defaults to "no".
347
348       enableFreeType yes | no
349              Enables  or  disables  use of FreeType (a TrueType / Type 1 font
350              rasterizer).  This is only relevant if the Xpdf tools were built
351              with  FreeType  support.   ("enableFreeType"  replaces  the  old
352              "freetypeControl" option.)  This option defaults to "yes".
353
354       enableFreeType yes | no
355              Enables or disables use of FreeType (a TrueType /  Type  1  font
356              rasterizer).  This is only relevant if the Xpdf tools were built
357              with  FreeType  support.   ("enableFreeType"  replaces  the  old
358              "freetypeControl" option.)  This option defaults to "yes".
359
360       disableFreeTypeHinting yes | no
361              If  this  is  set to "yes", FreeType hinting will be forced off.
362              This option defaults to "no".
363
364       antialias yes | no
365              Enables or disables font anti-aliasing in  the  PDF  rasterizer.
366              This option affects all font rasterizers.  ("antialias" replaces
367              the anti-aliasing control provided by the old "t1libControl" and
368              "freetypeControl" options.)  This default to "yes".
369
370       vectorAntialias yes | no
371              Enables  or disables anti-aliasing of vector graphics in the PDF
372              rasterizer.  This defaults to "yes".
373
374       antialiasPrinting yes | no
375              If  this  is  "yes",  bitmaps  sent  to  the  printer  will   be
376              antialiased  (according to the "antialias" and "vectorAntialias"
377              settings).  If  this  is  "no",  printed  bitmaps  will  not  be
378              antialiased.  This defaults to "no".
379
380       strokeAdjust yes | no
381              Enables  or disables stroke adjustment.  Stroke adjustment moves
382              horizontal and vertical lines by up to half a pixel to make them
383              look  "cleaner"  when  vector  anti-aliasing  is  enabled.  This
384              defaults to "yes".
385
386       screenType dispersed | clustered | stochasticClustered
387              Sets the halftone screen type, which will be used when  generat-
388              ing  a  monochrome  (1-bit)  bitmap.  The three options are dis-
389              persed-dot dithering, clustered-dot dithering (with a round  dot
390              and   45-degree  screen  angle),  and  stochastic  clustered-dot
391              dithering.  By default, "stochasticClustered" is used for  reso-
392              lutions of 300 dpi and higher, and "dispersed" is used for reso-
393              lutions lower then 300 dpi.
394
395       screenSize integer
396              Sets the size of the (square) halftone screen threshold  matrix.
397              By  default, this is 4 for dispersed-dot dithering, 10 for clus-
398              tered-dot  dithering,  and  100  for  stochastic   clustered-dot
399              dithering.
400
401       screenDotRadius integer
402              Sets  the  halftone  screen  dot radius.  This is only used when
403              screenType is set to stochasticClustered, and it defaults to  2.
404              In  clustered-dot  mode,  the  dot  radius is half of the screen
405              size.  Dispersed-dot dithering doesn't have a dot radius.
406
407       screenGamma float
408              Sets the halftone screen gamma correction parameter.  Gamma val-
409              ues  greater  than 1 make the output brighter; gamma values less
410              than 1 make it darker.  The default value is 1.
411
412       screenBlackThreshold float
413              When halftoning, all values below this threshold are  forced  to
414              solid black.  This parameter is a floating point value between 0
415              (black) and 1 (white).  The default value is 0.
416
417       screenWhiteThreshold float
418              When halftoning, all values above this threshold are  forced  to
419              solid white.  This parameter is a floating point value between 0
420              (black) and 1 (white).  The default value is 1.
421
422       minLineWidth float
423              Set the minimum line width, in device pixels.  This affects  the
424              rasterizer  only,  not  the PostScript converter (except when it
425              uses rasterization to handle transparency).  The  default  value
426              is 0 (no minimum).
427
428       drawAnnotations yes | no
429              If  set  to "no", annotations will not be drawn or printed.  The
430              default value is "yes".
431
432       overprintPreview yes | no
433              If set to "yes", generate overprint preview output, honoring the
434              OP/op/OPM  settings  in the PDF file.  Ignored for non-CMYK out-
435              put.  The default value is "no".
436
437       launchCommand command
438              Sets the command executed when  you  click  on  a  "launch"-type
439              link.   The  intent  is  for  the command to be a program/script
440              which determines the file type and runs the appropriate  viewer.
441              The  command  line will consist of the file to be launched, fol-
442              lowed by any parameters specified with the  link.   Do  not  use
443              "%s"  in  "command".   By  default, this is unset, and Xpdf will
444              simply try to execute the file (after prompting the user).
445
446       urlCommand command
447              Sets the command executed when you click on  a  URL  link.   The
448              string  "%s"  will  be  replaced with the URL.  (See the example
449              below.)  This has no default value.
450
451       movieCommand command
452              Sets the command executed when you click on a movie  annotation.
453              The string "%s" will be replaced with the movie file name.  This
454              has no default value.
455
456       mapNumericCharNames yes | no
457              If set to "yes", the Xpdf tools  will  attempt  to  map  various
458              numeric character names sometimes used in font subsets.  In some
459              cases this leads to usable text, and in other cases it leads  to
460              gibberish -- there is no way for Xpdf to tell.  This defaults to
461              "yes".
462
463       mapUnknownCharNames yes | no
464              If set to "yes", and mapNumericCharNames is  set  to  "no",  the
465              Xpdf  tools  will  apply  a simple pass-through mapping (Unicode
466              index = character code) for all unrecognized glyph names.   (For
467              CID  fonts, setting mapNumericCharNames to "no" is unnecessary.)
468              In some cases, this leads to usable text, and in other cases  it
469              leads  to  gibberish  -- there is no way for Xpdf to tell.  This
470              defaults to "no".
471
472       mapExtTrueTypeFontsViaUnicode yes | no
473              When rasterizing text using an external TrueType font, there are
474              two  options  for  handling character codes.  If mapExtTrueType-
475              FontsViaUnicode is set to "yes", Xpdf will use the  font  encod-
476              ing/ToUnicode  info  to map character codes to Unicode, and then
477              use the font's Unicode cmap to map Unicode to GIDs.  If  mapExt-
478              TrueTypeFontsViaUnicode  is  set  to  "no", Xpdf will assume the
479              character codes are GIDs (i.e., use an identity mapping).   This
480              defaults to "yes".
481
482       enableXFA yes | no
483              If  set  to  "yes", an XFA form (if present) will be rendered in
484              place of an AcroForm.  If "no", an XFA form will never  be  ren-
485              dered.  This defaults to "yes".
486
487       bind modifiers-key context command ...
488              Add  a  key  or  mouse button binding.  Modifiers can be zero or
489              more of:
490
491                  shift-
492                  ctrl-
493                  alt-
494
495              Key can be a regular ASCII character, or any one of:
496
497                  space
498                  tab
499                  return
500                  enter
501                  backspace
502                  insert
503                  delete
504                  home
505                  end
506                  pgup
507                  pgdn
508                  left / right / up / down        (arrow keys)
509                  f1 .. f35                       (function keys)
510                  mousePress1 .. mousePress7      (mouse buttons)
511                  mouseRelease1 .. mouseRelease7  (mouse buttons)
512
513              Context is either "any" or a comma-separated combination of:
514
515                  fullScreen / window       (full screen mode on/off)
516                  continuous / singlePage   (continuous mode on/off)
517                  overLink / offLink        (mouse over link or not)
518                  scrLockOn / scrLockOff    (scroll lock on/off)
519
520              The context string can include only one  of  each  pair  in  the
521              above list.
522
523              Command  is  an  Xpdf  command  (see the COMMANDS section of the
524              xpdf(1) man page for details).  Multiple commands are  separated
525              by whitespace.
526
527              The  bind  command replaces any existing binding, but only if it
528              was defined for the exact same modifiers, key, and context.  All
529              tokens (modifiers, key, context, commands) are case-sensitive.
530
531              Example key bindings:
532
533                  # bind ctrl-a in any context to the nextPage
534                  # command
535                  bind ctrl-a any nextPage
536
537                  # bind uppercase B, when in continuous mode
538                  # with scroll lock on, to the reload command
539                  # followed by the prevPage command
540                  bind B continuous,scrLockOn reload prevPage
541
542              See the xpdf(1) man page for more examples.
543
544       unbind modifiers-key context
545              Removes  a  key binding established with the bind command.  This
546              is most useful to remove default key bindings before  establish-
547              ing  new  ones  (e.g.,  if  the default key binding is given for
548              "any" context, and you want to create new key bindings for  mul-
549              tiple contexts).
550
551       printCommands yes | no
552              If  set  to  "yes", drawing commands are printed as they're exe-
553              cuted (useful for debugging).  This defaults to "no".
554
555       errQuiet yes | no
556              If set to "yes", this suppresses all error and warning  messages
557              from all of the Xpdf tools.  This defaults to "no".
558
559EXAMPLES
560       The following is a sample xpdfrc file.
561
562       # from the Thai support package
563       nameToUnicode /usr/local/share/xpdf/Thai.nameToUnicode
564
565       # from the Japanese support package
566       cidToUnicode Adobe-Japan1 /usr/local/share/xpdf/Adobe-Japan1.cidToUnicode
567       unicodeMap   JISX0208     /usr/local/share/xpdf/JISX0208.unicodeMap
568       cMapDir      Adobe-Japan1 /usr/local/share/xpdf/cmap/Adobe-Japan1
569
570       # use the Base-14 Type 1 fonts from ghostscript
571       fontFile Times-Roman           /usr/local/share/ghostscript/fonts/n021003l.pfb
572       fontFile Times-Italic          /usr/local/share/ghostscript/fonts/n021023l.pfb
573       fontFile Times-Bold            /usr/local/share/ghostscript/fonts/n021004l.pfb
574       fontFile Times-BoldItalic      /usr/local/share/ghostscript/fonts/n021024l.pfb
575       fontFile Helvetica             /usr/local/share/ghostscript/fonts/n019003l.pfb
576       fontFile Helvetica-Oblique     /usr/local/share/ghostscript/fonts/n019023l.pfb
577       fontFile Helvetica-Bold        /usr/local/share/ghostscript/fonts/n019004l.pfb
578       fontFile Helvetica-BoldOblique /usr/local/share/ghostscript/fonts/n019024l.pfb
579       fontFile Courier               /usr/local/share/ghostscript/fonts/n022003l.pfb
580       fontFile Courier-Oblique       /usr/local/share/ghostscript/fonts/n022023l.pfb
581       fontFile Courier-Bold          /usr/local/share/ghostscript/fonts/n022004l.pfb
582       fontFile Courier-BoldOblique   /usr/local/share/ghostscript/fonts/n022024l.pfb
583       fontFile Symbol                /usr/local/share/ghostscript/fonts/s050000l.pfb
584       fontFile ZapfDingbats          /usr/local/share/ghostscript/fonts/d050000l.pfb
585
586       # use the Bakoma Type 1 fonts
587       # (this assumes they happen to be installed in /usr/local/fonts/bakoma)
588       fontDir /usr/local/fonts/bakoma
589
590       # set some PostScript options
591       psPaperSize          letter
592       psDuplex             no
593       psLevel              level2
594       psEmbedType1Fonts    yes
595       psEmbedTrueTypeFonts yes
596       psFile               "| lpr -Pprinter5"
597
598       # assume that the PostScript printer has the Univers and
599       # Univers-Bold fonts
600       psResidentFont Univers      Univers
601       psResidentFont Univers-Bold Univers-Bold
602
603       # set the text output options
604       textEncoding UTF-8
605       textEOL      unix
606
607       # misc options
608       enableFreeType  yes
609       launchCommand   viewer-script
610       urlCommand      "netscape -remote 'openURL(%s)'"
611
612
613FILES
614       /usr/local/etc/xpdfrc
615              This  is  the default location for the system-wide configuration
616              file.  Depending on build options, it may be placed elsewhere.
617
618       $HOME/.xpdfrc
619              This is the user's configuration file.  If it exists, it will be
620              read in place of the system-wide file.
621
622AUTHOR
623       The  Xpdf  software  and  documentation are copyright 1996-2014 Glyph &
624       Cog, LLC.
625
626SEE ALSO
627       xpdf(1),  pdftops(1),  pdftotext(1),  pdftohtml(1),  pdfinfo(1),   pdf-
628       fonts(1), pdfdetach(1), pdftoppm(1), pdftopng(1), pdfimages(1)
629       http://www.foolabs.com/xpdf/
630
631
632
633                                  28 May 2014                        xpdfrc(5)
634