home *** CD-ROM | disk | FTP | other *** search
- % printing.ps -- pixel encoding dictionaries for various NeXT devices.
- % Used only by `machportdevice'.
- %
- % `machportdevice' evaluates `defaultColorRendering /ColorRendering
- % findresource' to establish the color rendering dictionary.
- % If `defaultHalftone' is a dictionary, then `machportdevice' uses it
- % as the argument to `sethalftone' to establish the halftone dictionary.
- % If `defaultHalftone' is a name, then `machportdevice' evaluates
- % `defaultHalftone /Halftone findresource' to establish the halftone
- % dictionary.
-
- currentshared true setshared
- nextdict begin
- /NeXTLaser-300 <<
- /jobTag 0 % overwriteable by apps
- /samplesPerPixel 1
- /bitsPerSample 1
- /colorSpace NX_OneIsBlackColorSpace
- /isPlanar false
- /defaultHalftone /NXLaserPrinter
- /defaultColorRendering /NXTrivialGray
- >> readonly def
-
- /NeXTLaser-400 NeXTLaser-300 def
-
- /NeXTCBJ <<
- /jobTag 0 % overwriteable by apps
- /samplesPerPixel 4
- /bitsPerSample 1
- /colorSpace NX_CmykColorSpace
- /isPlanar false
- /defaultHalftone /NXCanonBubbleJet
- /defaultColorRendering /NXCalibratedRGB
- >> readonly def
-
- /NeXTMegaPixelDisplay <<
- /jobTag 0
- /samplesPerPixel 1
- /bitsPerSample 2
- /colorSpace NX_OneIsWhiteColorSpace
- /isPlanar false
- /defaultHalftone /NXMegaPixelDisplay
- /defaultColorRendering /NXTrivialGray
- >> readonly def
- end
- setshared % restore default shared setting
-