home *** CD-ROM | disk | FTP | other *** search
-
- % Copyright 1992, NeXT Computer, Inc. All rights reserved.
- % Default transfer function for NeXT Laser Printer.
-
- /_NXTfr-400 [
- 0 .27 .37 .43 .48 .52 .58 .63 .68 .73 .78
- .81 .84 .875 .91 .932 .955 .967 .98 .99 1
- ] def % best for 400 dpi
-
- /NXDefaultTransfer {
- 2 dict begin
- //_NXTfr-400 length 1 sub mul /input exch def
- input ceiling input floor eq {
- //_NXTfr-400 input cvi get
- }{ % else (non-integer input)
- //_NXTfr-400 input floor cvi get input ceiling input sub mul
- //_NXTfr-400 input ceiling cvi get input input floor sub mul add
- } ifelse
- end
- } bind def
-
- currentdict /_NXTfr-400 undef %% cleanup
-