~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to fpcdocs/pics/ide/omemsize.eps

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%!PS-Adobe-3.0 EPSF-3.0
 
2
%%Creator: (ImageMagick)
 
3
%%Title: (omemsize.eps)
 
4
%%CreationDate: (Fri Dec  8 21:21:19 2000)
 
5
%%BoundingBox: 0 0 319 107
 
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: 0 0 320 108
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 0
 
271
320 108
 
272
12.000000
 
273
320 108
 
274
1
 
275
0
 
276
0
 
277
8
 
278
c0c0c0
 
279
f8fcf8
 
280
00fc00
 
281
000080
 
282
008000
 
283
f8fc00
 
284
000000
 
285
00fcf8
 
286
00ff003f00120103000b01030049010100020101003b0101008900120101000502030005
 
287
01010049010200000102003b010100890012010100050203000501010049010600c70001
 
288
010e0001010100050203000501010001013f000701060001010300020105000201030002
 
289
01020000010100020101000101010009010300030103000201050002010300030103000a
 
290
016600010101000e01010005020300050101004901010000010000000101000001010001
 
291
010100010101000001000000010100000101000101010002010100000102000101010001
 
292
010100080101000101010004010100020100000201010001010100010101000101010001
 
293
0101006e010100010101000e010100050203000501010049010100020101000001050001
 
294
010100000100000001010000010100010101000201020000010100010101000101010009
 
295
01010007010100050101000201050002010100710101000101010001010a000101010005
 
296
0203000501010001013f0007010100020101000001010005010100000100000001010000
 
297
010100010101000201010005010100010101000b01010005010100030101000401010008
 
298
0101000a0162000101010001010100010101000a01010005020300050101004901010002
 
299
010100000101000101010001010100000100000001010000010100010101000201010006
 
300
010300090101000101010004010100020101000201000001010100010101000101010001
 
301
0101006a0101000101010001010100010101000a01030003020300030103004901010002
 
302
0101000101030002010100020101000101030002010300070101000a0103000301050000
 
303
01050002010300030103006b010100010101000101010001010100930101009b01010001
 
304
0101000101010001010100900103009c010100010101000101010001010100ff00310101
 
305
00010101000101010001010100ff0031010100010101000101010001010100ff00310101
 
306
00010101000101010001010100ff0031010100010101000101010001010100ff00310101
 
307
00010101000101010001010100ff0031010100010101000101010001010100ff00310101
 
308
00010101000101010001010100ff0031010100010101000101010001010100ff00310101
 
309
00010101000101010001010100ff0031010100010101000101010001010100ff00310101
 
310
00010101000101010001010100ff0031010100010101000101010001010100a00307042f
 
311
03170040010100010101000101010001010100190503001a010200170101004a03070402
 
312
010004040103040501000404010404010106040101030402031700400101000101010001
 
313
0101000101010018050100010501000301000015010100170101004a0307040101010403
 
314
010104010101040301010403010104020101040001010402010104000101040101010401
 
315
031700400101000101010001010100010101001805010001050100020101001501010064
 
316
030701030407010104010103040301010401010204000101040201010400010104010101
 
317
040103170040010100010101000101010001010100180501000501050002010300030103
 
318
000301010001010100090103000301030002010500020103003a03070401010104070101
 
319
040301010403010104000103040501010404010104010317004001010001010100010101
 
320
000101010019050200040101000801010001010100010101000201010000010100090101
 
321
000101010004010100020100000201010001010100010101003903070401010104050102
 
322
040401010403010104000100040001010404010104040101040203170040010100010101
 
323
0001010100010101001b050100030101000501040001010100060103000b010100070101
 
324
000501010002010500390307040101010407010104030101040301030400010104030101
 
325
040401010403031700400101000101010001010100010101001805010001050100020101
 
326
0004010100010101000101010006010100000101000c0101000501010003010100040101
 
327
003d03070401010104070101040301010403010204010101040201010404010104040317
 
328
004001010001010100010101000101010018050100010501000201010000010100010101
 
329
000101010001010100010101000201010001010100080101000101010004010100020101
 
330
000201000001010100010101003903070401010104030101040101010403010104030101
 
331
040201010402010104030101040101010401031700400101000101010001010100010101
 
332
001905030004010200030102000001010001010300020102000101010009010300030105
 
333
0000010500020103003a0307010504020103040201050402010404030101040301050401
 
334
03170040010100010101000101010001010100a00307042f031700400101000101010001
 
335
01010001010100a00307042f03170040010100010101000101010001010100ff00310101
 
336
00010101000101010001010100ff0031010100010101000101010001010100ff00310101
 
337
00010101000101010001010100ff0031010100010101000101010001010100ff00310101
 
338
00010101000101010001010100ff0031010100010101000101010001010100ff00310101
 
339
00010101000101010001010100ff0031010100010101000101010001010100ff00310101
 
340
00010101000101010001010100ff0031010100010101000101010001010100ff00310101
 
341
00010101000101010001010100ff0031010100010101000101010001010100a0034f0040
 
342
01010001010100010101000101010018050100010501002c060100520308010303030104
 
343
030201030302010603030100030301050302010303120040010100010101000101010001
 
344
01010018050100010501002c060100520307010103010101030101010302010103000101
 
345
030101010301010103020101030201010303010103050101030101010311004001010001
 
346
010100010101000101010018050100010501008103070101030101010301010103010102
 
347
030001010301010103010101030201010300010303030101030501010301010103110040
 
348
010100010101000101010001010100180501000105010002060300030603000206010000
 
349
0602000a06030003060300020605000206030042030b0101030101010300010303000101
 
350
030101010306010103020101030301010309010103110040010100010101000101010001
 
351
010100180505000106010001060100050601000206010001060100080601000106010004
 
352
0601000206000002060100010601000106010041030a0101030201010300010003000101
 
353
030101040305010103030101030301040305010103120040010100010101000101010001
 
354
010100180501000105010001060500020604000206010001060100090601000706010005
 
355
060100020605004103090101030301030300010103030101030501010304010103070101
 
356
030301010313004001010001010100010101000101010018050100010501000106010005
 
357
0601000106010002060100010601000b0601000506010003060100040601004503080101
 
358
030401020301010103030101030401010305010103070101030201010314004001010001
 
359
010100010101000101010018050100010501000106010001060100010601000106010002
 
360
060100010601000806010001060100040601000206010002060000010601000106010041
 
361
030701010301010103010101030201010302010103050101030501010303010103010101
 
362
030101010301010103110040010100010101000101010001010100180501000105010002
 
363
0603000306020000060100010604000a0603000306050000060500020603004203070105
 
364
030201040302010203050101030301050302010303020105031100400101000101010001
 
365
01010001010100310601006c034f0040010100010101000101010001010100300603006b
 
366
034f0040010100010101000101010001010100ff00310101000101010001010100010101
 
367
00ff0031010100010101000101010001010100ff00310101000101010001010100010101
 
368
00ff0031010100010101000101010001010100ff00310101000101010001010100010101
 
369
00ff0031010100010101000101010001010100ff00310101000101010001010100010101
 
370
00ff0031010100010101000101010001010100ff00310101000101010001010100010101
 
371
00ff0031010100010101000101010001010100ff00310101000101010001010100010101
 
372
00ff003101010001010100010101000101010040043f0037043f00380101000101010001
 
373
0101000101010040041907020402050204010501041800370409060304220603040a0038
 
374
010100010101000101010001010100400418070104000701040205010401050104180037
 
375
040806010401060104230601040a00380101000101010001010100010101004004170701
 
376
04020701040105010400050104190037040706010402060104230601040a003801010001
 
377
010100010101000101010040041707010402070104010501040005010419003704070601
 
378
0406060304020604040306030403060304050601040a0038010100010101000101010001
 
379
01010040041707010402070104010503041a003704070601040906010401060104010601
 
380
0401060104010601040106010401060104040601040a0038010100010101000101010001
 
381
010100400417070104020701040105010400050104190607002f04070601040606040401
 
382
060104010601040106010405060504040601040a06070030010100010101000101010001
 
383
010100400417070104020701040105010400050104190607002f04070601040206010400
 
384
0601040106010401060104010601040106010405060104080601040a0607003001010001
 
385
0101000101010001010100400418070104000701040205010401050104180607002f0408
 
386
060104010601040006010401060104010601040106010401060104010601040106010401
 
387
060104040601040a06070030010100010101000101010001010100400419070204020502
 
388
0401050104180607002f0409060304020602040006010400060104010601040206030403
 
389
06030403060504080607003001010001010100010101000101010040043f0607002f043f
 
390
0607003001010001010100010101000101010040043f0607002f043f0607003001010001
 
391
010100010101000101010048063f0037063f003001010001010100010101000101010048
 
392
063f0037063f003001010001010100010101000101010048063f0037063f003001010001
 
393
010100010101000101010048063f0037063f003001010001010100010101000101010048
 
394
063f0037063f003001010001010100010101000101010048063f0037063f003001010001
 
395
0101000101010001010100ff0031010100010101000101010001010100ff003101010001
 
396
0101000101010001010100ff0031010100010101000101010001010100ff003101010001
 
397
0101000101010001010100ff0031010100010101000101010001010100ff003101010001
 
398
0101000101010001010100ff0031010100010101000101010001010100ff003101010001
 
399
0101000101010001010100ff0031010100010101000101010001010100ff003101010001
 
400
010100010101000101ff0135000101010001010100ff003901010001010100ff00390101
 
401
000101ff013d00ff003f00ff003f00ff003f00ff003f
 
402
%%EndData
 
403
end
 
404
%%PageTrailer
 
405
%%Trailer
 
406
%%BoundingBox: 0 0 319 107
 
407
%%EOF