0
|
1 %!PS-Adobe-3.0 EPSF-3.0
|
|
2 %%Creator: (ImageMagick)
|
|
3 %%Title: (emblem.eps)
|
|
4 %%CreationDate: (Sat Dec 16 23:16:28 2000)
|
|
5 %%BoundingBox: 226 313 398.455 493
|
|
6 %%DocumentData: Clean7Bit
|
|
7 %%LanguageLevel: 1
|
|
8 %%Pages: 0
|
|
9 %%EndComments
|
|
10
|
|
11 %%BeginDefaults
|
|
12 %%PageOrientation: Portrait
|
|
13 %%EndDefaults
|
|
14
|
|
15 %%BeginProlog
|
|
16 %
|
|
17 % Display a color image. The image is displayed in color on
|
|
18 % Postscript viewers or printers that support color, otherwise
|
|
19 % it is displayed as grayscale.
|
|
20 %
|
|
21 /buffer 512 string def
|
|
22 /byte 1 string def
|
|
23 /color_packet 3 string def
|
|
24 /pixels 768 string def
|
|
25
|
|
26 /DirectClassPacket
|
|
27 {
|
|
28 %
|
|
29 % Get a DirectClass packet.
|
|
30 %
|
|
31 % Parameters:
|
|
32 % red.
|
|
33 % green.
|
|
34 % blue.
|
|
35 % length: number of pixels minus one of this color (optional).
|
|
36 %
|
|
37 currentfile color_packet readhexstring pop pop
|
|
38 compression 0 gt
|
|
39 {
|
|
40 /number_pixels 3 def
|
|
41 }
|
|
42 {
|
|
43 currentfile byte readhexstring pop 0 get
|
|
44 /number_pixels exch 1 add 3 mul def
|
|
45 } ifelse
|
|
46 0 3 number_pixels 1 sub
|
|
47 {
|
|
48 pixels exch color_packet putinterval
|
|
49 } for
|
|
50 pixels 0 number_pixels getinterval
|
|
51 } bind def
|
|
52
|
|
53 /DirectClassImage
|
|
54 {
|
|
55 %
|
|
56 % Display a DirectClass image.
|
|
57 %
|
|
58 systemdict /colorimage known
|
|
59 {
|
|
60 columns rows 8
|
|
61 [
|
|
62 columns 0 0
|
|
63 rows neg 0 rows
|
|
64 ]
|
|
65 { DirectClassPacket } false 3 colorimage
|
|
66 }
|
|
67 {
|
|
68 %
|
|
69 % No colorimage operator; convert to grayscale.
|
|
70 %
|
|
71 columns rows 8
|
|
72 [
|
|
73 columns 0 0
|
|
74 rows neg 0 rows
|
|
75 ]
|
|
76 { GrayDirectClassPacket } image
|
|
77 } ifelse
|
|
78 } bind def
|
|
79
|
|
80 /GrayDirectClassPacket
|
|
81 {
|
|
82 %
|
|
83 % Get a DirectClass packet; convert to grayscale.
|
|
84 %
|
|
85 % Parameters:
|
|
86 % red
|
|
87 % green
|
|
88 % blue
|
|
89 % length: number of pixels minus one of this color (optional).
|
|
90 %
|
|
91 currentfile color_packet readhexstring pop pop
|
|
92 color_packet 0 get 0.299 mul
|
|
93 color_packet 1 get 0.587 mul add
|
|
94 color_packet 2 get 0.114 mul add
|
|
95 cvi
|
|
96 /gray_packet exch def
|
|
97 compression 0 gt
|
|
98 {
|
|
99 /number_pixels 1 def
|
|
100 }
|
|
101 {
|
|
102 currentfile byte readhexstring pop 0 get
|
|
103 /number_pixels exch 1 add def
|
|
104 } ifelse
|
|
105 0 1 number_pixels 1 sub
|
|
106 {
|
|
107 pixels exch gray_packet put
|
|
108 } for
|
|
109 pixels 0 number_pixels getinterval
|
|
110 } bind def
|
|
111
|
|
112 /GrayPseudoClassPacket
|
|
113 {
|
|
114 %
|
|
115 % Get a PseudoClass packet; convert to grayscale.
|
|
116 %
|
|
117 % Parameters:
|
|
118 % index: index into the colormap.
|
|
119 % length: number of pixels minus one of this color (optional).
|
|
120 %
|
|
121 currentfile byte readhexstring pop 0 get
|
|
122 /offset exch 3 mul def
|
|
123 /color_packet colormap offset 3 getinterval def
|
|
124 color_packet 0 get 0.299 mul
|
|
125 color_packet 1 get 0.587 mul add
|
|
126 color_packet 2 get 0.114 mul add
|
|
127 cvi
|
|
128 /gray_packet exch def
|
|
129 compression 0 gt
|
|
130 {
|
|
131 /number_pixels 1 def
|
|
132 }
|
|
133 {
|
|
134 currentfile byte readhexstring pop 0 get
|
|
135 /number_pixels exch 1 add def
|
|
136 } ifelse
|
|
137 0 1 number_pixels 1 sub
|
|
138 {
|
|
139 pixels exch gray_packet put
|
|
140 } for
|
|
141 pixels 0 number_pixels getinterval
|
|
142 } bind def
|
|
143
|
|
144 /PseudoClassPacket
|
|
145 {
|
|
146 %
|
|
147 % Get a PseudoClass packet.
|
|
148 %
|
|
149 % Parameters:
|
|
150 % index: index into the colormap.
|
|
151 % length: number of pixels minus one of this color (optional).
|
|
152 %
|
|
153 currentfile byte readhexstring pop 0 get
|
|
154 /offset exch 3 mul def
|
|
155 /color_packet colormap offset 3 getinterval def
|
|
156 compression 0 gt
|
|
157 {
|
|
158 /number_pixels 3 def
|
|
159 }
|
|
160 {
|
|
161 currentfile byte readhexstring pop 0 get
|
|
162 /number_pixels exch 1 add 3 mul def
|
|
163 } ifelse
|
|
164 0 3 number_pixels 1 sub
|
|
165 {
|
|
166 pixels exch color_packet putinterval
|
|
167 } for
|
|
168 pixels 0 number_pixels getinterval
|
|
169 } bind def
|
|
170
|
|
171 /PseudoClassImage
|
|
172 {
|
|
173 %
|
|
174 % Display a PseudoClass image.
|
|
175 %
|
|
176 % Parameters:
|
|
177 % class: 0-PseudoClass or 1-Grayscale.
|
|
178 %
|
|
179 currentfile buffer readline pop
|
|
180 token pop /class exch def pop
|
|
181 class 0 gt
|
|
182 {
|
|
183 currentfile buffer readline pop
|
|
184 token pop /depth exch def pop
|
|
185 /grays columns 8 add depth sub depth mul 8 idiv string def
|
|
186 columns rows depth
|
|
187 [
|
|
188 columns 0 0
|
|
189 rows neg 0 rows
|
|
190 ]
|
|
191 { currentfile grays readhexstring pop } image
|
|
192 }
|
|
193 {
|
|
194 %
|
|
195 % Parameters:
|
|
196 % colors: number of colors in the colormap.
|
|
197 % colormap: red, green, blue color packets.
|
|
198 %
|
|
199 currentfile buffer readline pop
|
|
200 token pop /colors exch def pop
|
|
201 /colors colors 3 mul def
|
|
202 /colormap colors string def
|
|
203 currentfile colormap readhexstring pop pop
|
|
204 systemdict /colorimage known
|
|
205 {
|
|
206 columns rows 8
|
|
207 [
|
|
208 columns 0 0
|
|
209 rows neg 0 rows
|
|
210 ]
|
|
211 { PseudoClassPacket } false 3 colorimage
|
|
212 }
|
|
213 {
|
|
214 %
|
|
215 % No colorimage operator; convert to grayscale.
|
|
216 %
|
|
217 columns rows 8
|
|
218 [
|
|
219 columns 0 0
|
|
220 rows neg 0 rows
|
|
221 ]
|
|
222 { GrayPseudoClassPacket } image
|
|
223 } ifelse
|
|
224 } ifelse
|
|
225 } bind def
|
|
226
|
|
227 /DisplayImage
|
|
228 {
|
|
229 %
|
|
230 % Display a DirectClass or PseudoClass image.
|
|
231 %
|
|
232 % Parameters:
|
|
233 % x & y translation.
|
|
234 % x & y scale.
|
|
235 % label pointsize.
|
|
236 % image label.
|
|
237 % image columns & rows.
|
|
238 % class: 0-DirectClass or 1-PseudoClass.
|
|
239 % compression: 0-RunlengthEncodedCompression or 1-NoCompression.
|
|
240 % hex color packets.
|
|
241 %
|
|
242 gsave
|
|
243 currentfile buffer readline pop
|
|
244 token pop /x exch def
|
|
245 token pop /y exch def pop
|
|
246 x y translate
|
|
247 currentfile buffer readline pop
|
|
248 token pop /x exch def
|
|
249 token pop /y exch def pop
|
|
250 currentfile buffer readline pop
|
|
251 token pop /pointsize exch def pop
|
|
252 /Helvetica findfont pointsize scalefont setfont
|
|
253 x y scale
|
|
254 currentfile buffer readline pop
|
|
255 token pop /columns exch def
|
|
256 token pop /rows exch def pop
|
|
257 currentfile buffer readline pop
|
|
258 token pop /class exch def pop
|
|
259 currentfile buffer readline pop
|
|
260 token pop /compression exch def pop
|
|
261 class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
|
|
262 grestore
|
|
263 } bind def
|
|
264 %%EndProlog
|
|
265 %%Page: 1 1
|
|
266 %%PageBoundingBox: 226 313 399 494
|
|
267 userdict begin
|
|
268 %%BeginData:
|
|
269 DisplayImage
|
|
270 226 313
|
|
271 173.455 181.091
|
|
272 12.000000
|
|
273 159 166
|
|
274 1
|
|
275 1
|
|
276 1
|
|
277 1
|
|
278 fffffffffffffffffffffffffffffffffffffffeffffffffffffffffffffffffffffffff
|
|
279 fffffffefffffffffffffffffffffffffffffffffffffffeffffffffffffffffffffffff
|
|
280 fffffffffffffffefffffffffffffffffffffffffffffffffffffffeffffffffffffffff
|
|
281 fffffffffffffffffffffffefffffffffffffffffffffffffffffffffffffffeffffffff
|
|
282 fffffffffe0000fffffffffffffffffeffffffffffffffffc0000007fffffffffffffffe
|
|
283 fffffffffffffff8000000003ffffffffffffffeffffffffffffffe00002000007ffffff
|
|
284 fffffffeffffffffffffff008133000000fff8fffffffffefffffffffffffc04efbba440
|
|
285 003ff0fffffffffeffffffffffffe017fffff661000ff0fffffffffeffffffffffff813f
|
|
286 f803ffe7fffff0fffffffffeffffffffffff03f8000007fffffff0fffffffffeffffffff
|
|
287 fffc3f813ffe003ffffff0fffffffffeffffffffffc1c1ffffffff8700000000000ffffe
|
|
288 ffffffffff078ffffffffff300000000000ffffeffffffffff078ffffffffff300000000
|
|
289 000ffffefffffffffe3e3ffbdee67fff00000000000ffffefffffffffc787ff99eee6fff
|
|
290 07f83fe1000ffffefffffffff8e3ff319dce4cff0ff83fe3ff8ffffefffffffff38ffb93
|
|
291 9dcc4cef0ff83fe3ff8ffffeffffffffc63ffb919dcc4ccf0ff83fe3ff8ffffeffffffff
|
|
292 9cffbb119dcc48cf0ff83fe3ff8ffffeffffffff73ffb1111988488f0ff83fe3ff8ffffe
|
|
293 fffffffee7fbb1111988c19f0ff83fe3ff8ffffefffffffb9ff19100198800070ff83fe3
|
|
294 ff8ffffefffffff73e719000110000070ff83fe3ff8ffffeffffffecff38880011000007
|
|
295 0ff83fe3ff8ffffeffffffecff388800110000070ff83fe3ff8ffffefffffff9fb38800e
|
|
296 110000070ff83fe3ff8ffffefffffff3f318001f81000d870ff83fe3ff8ffffeffffffef
|
|
297 fb98007fc0003fe70ff83fe3ff8ffffeffffffffd98c01ffe0003fff0ffc7fe3ff8ffffe
|
|
298 ffffffdf898403f1e000fffffffffffffffffffeffffffbecc800fe0e001f27fffffffff
|
|
299 fffffffeffffff7cc4801fc1f007f27ffffffffffffffffefffffcf200007e0fffffa267
|
|
300 803f3fc7c03ffffefffffdf00000f81f3fffa267001e1f83800ffffefffffbe00019f07b
|
|
301 77fda267001e0603000ffffeffffffe000ffe1e937d9a267001e0003800ffffeffffff80
|
|
302 7fff83e926d98027003f000f800ffffeffffff01ffff8fe9269880070fffc01fff8ffffe
|
|
303 fffffc0fffef1ec8228800070fffc01fff8ffffefffffc1ffe1e3ee8028800070fff0007
|
|
304 ff0ffffefffff41fc03c746000880007001e0003800ffffefffff01f8038726000080007
|
|
305 001e0603000ffffefffff01f8070f200000003c7001e0403000ffffeffffa01f0fe3b007
|
|
306 80003fff001f0007800f7ffeffff801e03c7b00fc0007fff0fff800fff0f7ffeffff803e
|
|
307 018e900fe000ffff0fffc03fff0f3ffeffff803c071e001ff803ffff0fff800fff0f3ffe
|
|
308 ffff00fc0e32007ffe1fffff003e0007c00f3ffeffff03fc027a007fffffffff001e0403
|
|
309 800f1ffeffff0ff8047801ffffffffff001e1f03000f1ffeffff1ff81cd803ffffffffff
|
|
310 001e1fc7000f0ffefffc7ff80dc807ffffffffff803fffff801e0ffefff8fff01bc01fff
|
|
311 fffffffffffffffffffe0ffefff9fff033007ffffffffffffffffffffffe0ffefffffff0
|
|
312 6707ffffffffffff00000000000f0ffeffffffe06f0fffffffffffff00000000000f07fe
|
|
313 ffffffe1cd1fffffffffffff00000000000f07feffffffe0dc3fffffffffffff00000000
|
|
314 000f07feffffffe09c3fffffffffffff0fffffffff0f07feffffffe1b83fffffffffffff
|
|
315 0f1e0007870f03feffffffe3383fffffffffffff0f1c0003870f03feffffffe3783fffff
|
|
316 ffffffff0f1c0003870f03feffffffe6683fffffffffffff0f1c0003870f03feffffffe6
|
|
317 e03ffffffffffffe0f1c3fe3870f03feffffffe6e03fffffffffffff0f1c0003870f81fe
|
|
318 ffffffed80fffffffffffffe0f1e0003870f01feffffffed80fffffffffffffe0f1e0003
|
|
319 870f01fefff9ffedc1fffffffffffffe0f1fe0ff870f01feffe1ffeb83fffffffffffffe
|
|
320 0f1fe0ff870f01feffc1ffff07fffffffffffffe0f000000070f81feff81ffff0fffffff
|
|
321 fffffffe0f000000070f01feff01fffe3fffffffffffffff1f000000079e01fefe01fffe
|
|
322 7fffffffffffffffff00000007bf81fefe01fffcffffffffffffffffffffe0ffffff00fe
|
|
323 fe01ffffffffffffffffffffffffe0fffffe00fefe01ffffffffffffffffffffffffe0ff
|
|
324 fff830fefe01fffffffffffffffffffffff870fc1e3f80fefe01ffffffffffffffffffff
|
|
325 fff879ee0e1f00fefe01fffffffffffffffffffffff87fe7863c00fefe01ffffffffffff
|
|
326 fffffffffff03fc3c63800fefe01fffffffffffffffffffffff01fc3e638f0fefe01ffff
|
|
327 fffffffffffffffffff80661fe3fc0fefe01fffffffffffffffffffffffc0038fe3f00fe
|
|
328 fe01fffffffffffffffffffffffe000c7e3c01fefe01fffffffffffffffffffffff3000c
|
|
329 3e3001fefe01ffffffffffffffffffffffe182061c31e1fefe01ffffffffffffffffffff
|
|
330 ffc041031c3f81fefe00ffffffffffffffffffffffc000438c3801fefe00ffffffffffff
|
|
331 ffffffffff801061cc2001feff00ffffffffffffffffffffff800830f86001feff00ffff
|
|
332 ffffffffffffffffff800830f86001feff00ffffffffffffffffffffff800418f87f03fe
|
|
333 ff00ffffffffffffffffffffff00061c787c03feff80ffffffffffffffffffffff00030c
|
|
334 386003feff80ffffffffffffffffffffff000186306003feff80ffffffffffffffffffff
|
|
335 ff002186307f87feff807ffffffffffffffffffffe0000c3307c07feffc07fffffffffff
|
|
336 fffffffffe0000e3e04007feffc07ffffffffffffffffffffc001873e0fc0ffeffe03fff
|
|
337 fffffffffffffffff8000c39c1e00ffeffe03ffffffffffffffffffff0000c39c1800ffe
|
|
338 ffe01ffffffffffffffffffff0000e1dc1f80ffefff01fffffffffffffffffffe000471d
|
|
339 83fe0ffefff00fffffffffffffffffffc000471f83e00ffefff00fffffffffffffffffff
|
|
340 c000630f07001ffefff806ffffffffffffffffff8000238f07f81ffefff8067fffffffff
|
|
341 ffffffff0004238e07f83ffefffc033fffffffffffffffff000421c60e003ffefffc031f
|
|
342 fffffffffffffffe008611c40f007ffefffe019ffffffffffffffffc004211ec1fc07ffe
|
|
343 fffe00c7fffffffffffffff8004311fc1e007ffeffff00c3fffffffffffffff8006318fc
|
|
344 3800fffeffff0061fffffffffffffff0006318f87f81fffeffff00207fffffffffffffe0
|
|
345 00219cf87fc1fffeffff80201fffffffffffffe002319c70e003fffeffff80100fffffff
|
|
346 ffffffe001319ce1e003fffeffffc01f87fffffffffffe600131cfc1fe07fffeffffe01f
|
|
347 03fffffffffff8201119cf83ff87fffefffff00e03ffffffffffe0201118cf83000ffffe
|
|
348 fffff807f1ffffffffff80321118ef03e01ffffefffff803e07ffffffffc0033111cfe06
|
|
349 781ffffefffffc01c03ffe0fffe00033191cfc0c003ffffefffffe00fc0ff800fe000013
|
|
350 189cf81f807ffffeffffff007c01e00000000013189ef03fe07ffffeffffff8039800400
|
|
351 00000011189ee070007ffffeffffff801e00040000000011088fe0fc00fffffeffffffc0
|
|
352 0e78080000000019088fc1fe01fffffeffffffe007f118000010103988cf03c101fffffe
|
|
353 fffffff003c73088001011398cde07f007fffffefffffff001de71884211313b8cfc0e7c
|
|
354 0ffffffeffffffec007e61084231333b8cf01e000ffffffefffffff3000fc711c623333b
|
|
355 9f8073e03ffffffefffffff98003ce31c673333b9f00f0007ffffffefffffffe6001de71
|
|
356 8e63333bfe01fc00fffffffeffffffff30007c738ee7233bf803e201fffffffeffffffff
|
|
357 88001ef79ee6663fe00f7003fffffffeffffffffc40007ff1ce6677f001f1807fffffffe
|
|
358 fffffffff30000ff3dce7ffc00f9c00ffffffffefffffffff8c0001ffdffffe000f8403f
|
|
359 fffffffefffffffff8c0001ffdffffe000f8403ffffffffefffffffffc300003ffffff00
|
|
360 03fc007ffffffffefffffffffe0c00001fff80000f8700fffffffffeffffffffff81c000
|
|
361 00000001fe300ffffffffffeffffffffffe0f80000000007e3001ffffffffffeffffffff
|
|
362 fff87f800000003f70003ffffffffffefffffffffffe27f0000003fe1800fffffffffffe
|
|
363 ffffffffffff833ff003fff10003fffffffffffeffffffffffffe10fffffff38000fffff
|
|
364 fffffffefffffffffffff801bffb2300007ffffffffffffeffffffffffffff0011313080
|
|
365 01fffffffffffffeffffffffffffffc00118004007fffffffffffffefffffffffffffff0
|
|
366 000800007ffffffffffffffeffffffffffffffffc0000003fffffffffffffffeffffffff
|
|
367 fffffffffffffffffffffffffffffffefffffffffffffffffffffffffffffffffffffffe
|
|
368 fffffffffffffffffffffffffffffffffffffffeffffffffffffffffffffffffffffffff
|
|
369 fffffffefffffffffffffffffffffffffffffffffffffffeffffffffffffffffffffffff
|
|
370 fffffffffffffffe
|
|
371 %%EndData
|
|
372 end
|
|
373 %%PageTrailer
|
|
374 %%Trailer
|
|
375 %%BoundingBox: 226 313 398.455 493
|
|
376 %%EOF
|