/cups/pdftops.conf

http://github.com/brinkman83/bashrc · Config · 61 lines · 54 code · 7 blank · 0 comment · 0 complexity · 04efb7cf36d45ee490b1c57b6e30d736 MD5 · raw file

  1. #
  2. # Configuration file for the alternate pdftops filter
  3. #
  4. # 2004-10-05/Bl
  5. # initial
  6. #
  7. # This configuration file defaults the configuration settings for xpdf's pdftops
  8. # utility for use as a CUPS filter (under the pdftops wrapper). Short of
  9. # unicode handling, those options are listed which are (or seem to me) relevant
  10. # to convert PDFs to PostScript suitable for production printers.
  11. #
  12. # Most of these options may be overridden by osing the commandline options
  13. # pr pdftops prefixed with 'pdf'. Example: to enable OPI handling, add
  14. # pdf-opi
  15. # to the command line options. For the details see the pdftops wrapper.
  16. #
  17. # Where to search for fonts not embedded in the PDF (currently, Type1 fonts only)
  18. #
  19. fontDir /PostScript/pfa
  20. #
  21. # Paper size handling
  22. # We default to the media size specified in the PDF file.
  23. # If a crop box is specified, it wil be used, otherwise the media box instead.
  24. # By default, we use this size as imageable area.
  25. #
  26. psPaperSize match
  27. psCrop yes
  28. psExpandSmaller no
  29. psShrinkLarger no
  30. psCenter yes
  31. #
  32. # As we have (level 2) printers which don't understand CID fonts, we produce level 2
  33. # output.
  34. #
  35. psLevel level2
  36. #
  37. # Font handling.
  38. # We embed all fonts embedded in the PDF in the generated PS (level2 compatible composite
  39. # fonts in case of CID fonts.
  40. #
  41. psEmbedType1Fonts yes
  42. psEmbedTrueTypeFonts yes
  43. psEmbedCIDTrueTypeFonts yes
  44. psEmbedCIDPostScriptFonts yes
  45. #
  46. # OPI.
  47. # As OPI handling is rather uncommon to printers, disable it by default. But it may be
  48. # enabled by print command attribute.
  49. #
  50. psOPI no
  51. #
  52. # Use ASCII85 encoding.
  53. #
  54. psASCIIHex no