📄 gslp.ps
字号:
% Copyright (C) 1991, 1995, 1996, 1997, 1998 Aladdin Enterprises. All rights reserved.
%
% This file is part of Aladdin Ghostscript.
%
% Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
% or distributor accepts any responsibility for the consequences of using it,
% or for whether it serves any particular purpose or works at all, unless he
% or she says so in writing. Refer to the Aladdin Ghostscript Free Public
% License (the "License") for full details.
%
% Every copy of Aladdin Ghostscript must include a copy of the License,
% normally in a plain ASCII text file named PUBLIC. The License grants you
% the right to copy, modify and redistribute Aladdin Ghostscript, but only
% under certain conditions described in the License. Among other things, the
% License requires that the copyright notice and this notice be preserved on
% all copies.
% $Id: gslp.ps $
% gslp.ps - format and print text
% This utility provides functionality approximately equivalent to the Unix
% `enscript' program. It prints plain text files using a single font.
% It currently handles tabs and formfeeds, but not backspaces.
% It will line-wrap when using fixed-pitch fonts.
% It will also do kerning and width adjustment.
% Standard switches implemented:
% -12BclqRr -b<header> -f<font> -F<hfont> -L<lines> -p<outfile>
% Sun switches implemented:
% -T<n> set tab width
% Switches ignored:
% -GghKkmow -# -C -d -J -n -P -S -s -t -v
% Switches added:
% --add-to-space <units>
% add the given number of 1/72" units to the width of each
% space (may be negative)
% --add-to-width <units>
% add the given number of 1/72" units to the width of each
% character (may be negative)
% --columns <n>
% print in <n> columns
% --detect
% treat the file as PostScript if it starts with %!
% --first-page <n>
% start printing at page <n>
% --kern <file.afm>
% kern using information from the given .AFM file
% --last-page <n>
% stop printing after page <n>
% --(heading|footing)-(left|center|right) <string>
% set the heading/footing fields; use -B first to clear
% --margin-(top|bottom|left|right) <inches>
% set a margin
% --no-eject-(file|formfeed)
% end-of-file/FF only starts a new column, not a new sheet
% --spacing <n>
% use double (n=2), triple (n=3), etc. spacing
% Also, the string %# in a heading or footing is replaced with the page #.
/PageNumberString (%#) def
/lpdict 150 dict def
lpdict begin
% build iso-latin-1 version of a font
/font-to-iso-latin-1 { % <font> font-to-iso-latin-1 <font>
%% reencode for iso latin1; from the 2nd edition red book, sec 5.6.1
dup length dict begin {1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def currentdict end
dup /FontName get 80 string cvs (-ISOLatin1) concatstrings cvn
exch definefont
} def
/find-latin-font { % <name> find-latin-font <font>
findfont font-to-iso-latin-1
} def
% Define the initial values of the printing parameters.
/AddToSpace 0 def
/AddToWidth 0 def
/BodyFont null def % use default
/defaultBodyFont
{ /Courier find-latin-font Landscape { 7 } { 10 } ifelse scalefont } def
/Columns 1 def
/DetectFileType false def
/EjectEOF true def
/EjectFF true def
/Footers false def
/FootingLeft () def
/FootingCenter () def
/FootingRight () def
/Headers true def
/HeadingLeft () def
/HeadingCenter () def
/HeadingRight (page ) PageNumberString concatstrings def
/HeadingFont null def % use default
/defaultHeadingFont
{ /Courier-Bold find-latin-font 10 scalefont } def
/Kern 0 dict def % no kerning
/Landscape false def
/MarginBottom 36 def % 1/2"
/MarginLeft 36 def % 1/2"
/MarginRight 36 def % 1/2"
/MarginTop 36 def % 1/2"
/MaxLines 9999 def % max lines per page
/Noisy true def % i.e., not quiet
/OutFile null def % null = write directly to device
/PageFirst 1 def
/PageLast 99999 def
/Spacing 1 def
/Tab 8 def
/Truncate false def % wrap long lines, don't truncate
% When writing to a file, we want to write out PostScript;
% when writing to the printer, we want to execute it;
% some commands should be executed regardless.
% lpexec provides for all this.
/lpdef { % <name> <value> lpdef -
OutFile null ne {
1 index wosp dup wosp OutFile ( def\n) writestring
} if def
} def
/lpexec % <arg1> ... <argn> </op> <n> <do_always> lpexec -
{ OutFile null eq
{ pop 1 add true
}
{ /t exch def 1 add /n exch def cvx
n { n -1 roll dup wosp } repeat
OutFile (\n) writestring
n t
}
ifelse
{ pop load exec }
{ { pop } repeat }
ifelse
} def
/lpmoveto {
/moveto 2 true lpexec
} def
/lpshow {
dup length 0 ne {
addspace 0 ne {
addspace 0 32
addwidth 0 ne {
addwidth 0 6 -1 roll /awidthshow 6
} {
4 -1 roll /widthshow 4
} ifelse
} {
addwidth 0 ne {
addwidth 0 3 -1 roll /ashow 3
} {
/show 1
} ifelse
} ifelse
true lpexec
} {
pop
} ifelse
} def
/lpsetmyfont {
dup load setfont
OutFile null ne { cvx /setfont 1 false lpexec } { pop } ifelse
} def
% Define some utility procedures.
/banner % ypos left center right
{ /HFont lpsetmyfont
/addspace 0 def /addwidth 0 def
/pairkern 0 dict def
3 -1 roll bannerstring pop 0 4 index pwidth showline2 pop
exch bannerstring pwidth exch sub 2 div 3 index pwidth showline2 pop
bannerstring
% Prevent the last character of the heading from grazing
% the right margin.
% ****** WHY DOES IT REQUIRE SO MUCH PADDING? ******
( ) stringwidth pop 2 mul add
pwidth exch sub
3 -1 roll pwidth showline2 pop
} def
/bannerstring % string -> string width
{ PageNumberString search
{ exch pop pindex 4 string cvs concatstrings exch concatstrings
}
if dup stringwidth pop
} def
/beginpage
{ /lindex 0 def
/skipping pindex PageFirst ge pindex PageLast le and not def
/save 0 true lpexec /pagesave exch def
skipping { nulldevice /OutFile null def } if
Headers
{ lheight hdescent add
HeadingLeft HeadingCenter HeadingRight banner
} if
/BFont lpsetmyfont
/addspace AddToSpace lpdef /addwidth AddToWidth lpdef
/pairkern Kern def
} def
/endpage
{ lindex 0 ne
{ Footers
{ topskip plength sub hdescent add
FootingLeft FootingCenter FootingRight banner
} if
/showpage 0 false lpexec
} if
pagesave /restore 0 true lpexec
/pindex pindex 1 add def
} def
/endcolumn
{ lindex colines 1 sub add colines idiv colines mul
dup llength ge { pop endpage beginpage } { /lindex exch def } ifelse
} def
/fontheight % <font> fontheight <ascent> <height>
{ gsave setfont
newpath 0 0 moveto
(|^_j) false charpath
pathbbox exch pop dup 2 index sub 4 -2 roll pop pop
grestore exch 1.25 mul exch 1.25 mul
} def
/wdict {
dup length wosp ( dict\n) ws
{ (dup) ws exch wosp wosp ( put\n) ws } forall
} def
/wosp {
( ) ws
dup type /dicttype eq { wdict } { OutFile exch write==only } ifelse
} def
/ws {
OutFile exch writestring
} def
/outfont % name font ->
{ OutFile null ne
{ exch wosp
dup /FontName get
dup wosp OutFile ( findfont) writestring
%% reencode for iso latin1; from the 2nd edition red book, sec 5.6.1
OutFile (
dup length dict begin {1 index /FID ne {def} {pop pop} ifelse} forall
/Encoding ISOLatin1Encoding def currentdict end
) writestring
wosp OutFile (-ISOLatin1 exch definefont) writestring
/FontMatrix get 0 get 1000 mul round cvi wosp
OutFile ( scalefont def\n) writestring
}
{ pop pop
}
ifelse
} def
/StringFF (\f) def
/CharFF StringFF 0 get def
/StringTAB (\t) def
/CharTAB StringTAB 0 get def
/showline % line -> leftover_line (handles \f)
{ { showline1 dup length 0 eq { exit } if
dup 0 get CharFF ne { exit } if
EjectFF { endpage beginpage } { endcolumn } ifelse
skip1
}
loop
} def
/showline1 % line -> leftover_line (handles page break)
{ lindex llength eq { endpage beginpage } if
lindex colines idiv cowidth mul % x
lindex colines mod 1 add lheight mul neg fascent sub % y
1 index cowidth add
showline2
/lindex lindex 1 add def
} def
/showline2 % string x y xlimit -> leftover_string (handles tabs)
{ 2 index exch 5 2 roll lpmoveto % xinit xlimit string
{ showline3 dup length 0 eq { exit } if
dup 0 get CharTAB ne { exit } if
currentpoint exch 4 index sub tabwx div
0.05 add ceiling tabwx mul 4 index add exch lpmoveto
skip1
currentpoint pop 2 index ge { exit } if
}
loop exch pop exch pop
} def
/showline3 % xlimit string -> xlimit leftover_string
% (finds line break / tab / formfeed)
{ currentpoint pop 2 index exch sub
cwx div 0.1 add cvi 0 max 1 index length min
1 index 0 3 -1 roll getinterval
% look for \f or \t
StringFF search { exch pop exch pop } if
StringTAB search { exch pop exch pop } if
dup pairkern length 0 eq {
lpshow
} {
{ kproc } exch /kshow 2 true lpexec
} ifelse
length dup 2 index length exch sub getinterval
} def
/kproc { % <char1> <char2> kproc -
pairkern currentfont /Encoding get 3 index get
2 copy known {
get currentfont /Encoding get 2 index get
2 copy known {
get currentfont /FontMatrix get 0 get mul
} {
pop pop 0
} ifelse
} {
pop pop 0
} ifelse
addwidth add 2 index 32 eq { addspace add } if
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -