% % File: Example.ps % % End-user startup PostScript job file. Include any permanent PostScript into % this file. This file will be executed as an "unencapsulated job"* % each time the Acrobat Distiller application starts up. % % *See "PostScript(R) Language Reference Manual, Second Edition," Chapter 3.7.7 % % NOTE: This file will be overwritten each time you install Acrobat Distiller. % We recommend you make a copy of this file to a different name and modify % that copy. % % Each of the items below is presented as an example as is commented out. To % actually use one of the examples, uncomment the line(s) of PostScript code by % deleting the "%" character and modify to suit your needs. %%% DEFAULT PAGE SIZE %%% The Distiller recognizes most all PostScript page size operators. If you %%% want to change the default page size used by Distiller, you may do so using %%% the setpagedevice command. Page dimensions are in points (width x height). % << /PageSize [612 792] >> setpagedevice %%% MESSAGES %%% Print a text string to the Messages window in the Status dialog % (Your message here...) print flush %%% JOB OPTION AND COMPRESSION SETTINGS %%% To fine-tune the JPEG settings below, we suggest you only change the number %%% directly following the /QFactor key. For QFactor > .50 use the Blend and %%% Samples data in the .50 example; for QFactor < .50, use the Samples data in %%% the .25 example and omit the Blend key. Please note the JPEG compression %%% and downsampling is individually controllable for grayscale and color images. %%% For reference, the default QFactor values for Acrobat Distiller 2.0 are: %%% %%% High compression: QFactor = 1.3 %%% Medium-High compression: QFactor = 0.9 %%% Medium compression: QFactor = 0.5 %%% Medium-Low compression: QFactor = 0.25 %%% Low compression: QFactor = 0.1 % << /EncodeGrayImages true % /GrayImageFilter /DCTEncode % /GrayImageDict << /QFactor 0.50 /Blend 1 /HSamples [2 1 1 2] /VSamples [2 1 1 2] >> % /DownsampleGrayImages true % /GrayImageResolution 72 % % /EncodeColorImages true % /ColorImageFilter /DCTEncode % /ColorImageDict << /QFactor 0.25 /HSamples [1 1 1 1] /VSamples [1 1 1 1] >> % /DownsampleColorImages true % /ColorImageResolution 72 % % >> setdistillerparams %%% CONVERT CMYK IMAGES TO RGB IMAGES %%% Converting CMYK images to RGB can reduce file sizes and potentially improve the %%% quality of some screen displays. Note that CMYK line art is NOT converted to RGB. %%% The default setting for this option is true, but can be disabled via this file. % << /ConvertCMYKImagesToRGB false >> setdistillerparams %%% FONT EMBEDDING %%% Specify that all fonts (other than those in the /NeverEmbed list) are to be embedded. %%% as subsets. This is the recommended setting for Acrobat Distiller 2.0. %%% Note that the core 14 fonts (Times, Helvetica, and Courier families, Symbol, and %%% ITC Zapf Dingbats) are never embedded. << /EmbedAllFonts true /SubsetFonts true >> setdistillerparams % List specific fonts to always be embedded % << /AlwaysEmbed [/Carta] >> setdistillerparams % List specific fonts to never be embedded % << /NeverEmbed [/Carta] >> setdistillerparams %%% PRE-LOADING FONTS INTO MEMORY %%% Load a font into the FontDirectory dictionary (local VM) % /Courier findfont pop %%% AUTOMATIC IMAGE COMPRESSION FILTER SELECTION %%% Automatic filter selection enables the proper handling of documents %%% containing photographic and screen shot images. The Distiller examines %%% samples in 8-bits-per-component images looking for sharp color changes. %%% If it has sharp color changes, LZW compression is used; if it has smooth %%% color changes, JPEG compression is used. The default setting for this %%% option is true, but can be disabled via this file. % <> setdistillerparams % <> setdistillerparams %%EOF