aboutsummaryrefslogtreecommitdiff
path: root/postscript/prologues/postgif.ps
blob: 9827857f7b2a4093ce5f218ff4a5036c02479a58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
%
% Version 3.3.2 prologue for GIF pixmap files.
%

/#copies 1 store
/aspectratio 1 def
/formsperpage 1 def
/landscape false def
/magnification 1 def
/margin 0 def
/orientation 0 def
/rotation 1 def
/xoffset 0 def
/yoffset 0 def

/useclippath true def
/pagebbox [0 0 612 792] def

/inch {72 mul} bind def
/min {2 copy gt {exch} if pop} bind def

/setup {
	counttomark 2 idiv {def} repeat pop

	landscape {/orientation 90 orientation add def} if

	pagedimensions
	xcenter ycenter translate
	orientation rotation mul rotate
	xoffset inch yoffset inch translate
	magnification dup aspectratio mul scale

	/height height margin sub def
	/width width margin sub def
} def

/pagedimensions {
	useclippath {
		/pagebbox [clippath pathbbox newpath] def
	} if
	pagebbox aload pop
	4 -1 roll exch 4 1 roll 4 copy
	landscape {4 2 roll} if
	sub /width exch def
	sub /height exch def
	add 2 div /xcenter exch def
	add 2 div /ycenter exch def
	userdict /gotpagebbox true put
} def

/pagesetup {/page exch def} bind def

/done {/lastpage where {pop lastpage} if} def

/alignment false def

/gifscreen { % scrwidth scrheight $
    2 copy

    alignment {
    	100 dup dtransform exch 100 exch div abs exch 100 exch div abs
	2 copy scale
	/height exch height exch div def
	/width exch width exch div def
    } if

    height exch div exch width exch div
    2 copy lt { pop } { exch pop } ifelse

    alignment { cvi } if

    dup scale

    neg 2 div exch neg 2 div exch translate
} def

/gifimage { % gray imagewidth imageheight xorigin yorigin $
    translate
    2 copy scale
    /imageheight exch def
    /imagewidth exch def
    /gray exch def
    imagewidth imageheight 8 [imagewidth 0 0 imageheight neg 0 imageheight]
    gray {
	{ currentfile codestr readhexstring pop } image
    } {
	/colorimage where {
	    pop
	    /picstr imagewidth 3 mul string def
	    { currentfile codestr readhexstring pop pop
	    	0 1 imagewidth 1 sub {
		    picstr exch dup 3 mul exch colortbl exch codestr exch get
		    3 mul 3 getinterval putinterval
	    	} for picstr
	    } false 3 colorimage
	} {
	    { currentfile codestr readhexstring pop pop
	    	0 1 imagewidth 1 sub {
		    codestr exch dup graytbl exch codestr exch get get put
	    	} for codestr
	    } image
	} ifelse
    } ifelse
} def