~ubuntu-branches/debian/lenny/fpc/lenny

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Mazen Neifer, Torsten Werner, Mazen Neifer
  • Date: 2008-05-17 17:12:11 UTC
  • mfrom: (3.1.9 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080517171211-9qi33xhd9evfa0kg
Tags: 2.2.0-dfsg1-9
[ Torsten Werner ]
* Add Mazen Neifer to Uploaders field.

[ Mazen Neifer ]
* Moved FPC sources into a version dependent directory from /usr/share/fpcsrc
  to /usr/share/fpcsrc/${FPCVERSION}. This allow installing more than on FPC
  release.
* Fixed far call issue in compiler preventing building huge binearies.
  (closes: #477743)
* Updated building dependencies, recomennded and suggested packages.
* Moved fppkg to fp-utils as it is just a helper tool and is not required by
  compiler.

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: (target.eps)
 
4
%%CreationDate: (Sun Dec  3 00:59:11 2000)
 
5
%%BoundingBox: 0 0 287 155
 
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 288 156
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 0
 
271
288 156
 
272
12.000000
 
273
288 156
 
274
1
 
275
0
 
276
0
 
277
8
 
278
c0c0c0
 
279
f8fcf8
 
280
00fc00
 
281
008080
 
282
000000
 
283
f8fc00
 
284
008000
 
285
00fcf8
 
286
00ff001f00120103000b01030051010500a0001201010005020300050101005101000000
 
287
01010000010000230100007b0012010100050203000501010053010100240101007b0001
 
288
010e00010101000502030005010100010147000901010004010300020102000001010002
 
289
01020000010100010103000201050009016e00010101000e010100050203000501010053
 
290
010100070101000201010000010200000101000101010001010100010101000201010079
 
291
010100010101000e01010005020300050101005301010004010400020102000001010000
 
292
010100010101000101050002010100790101000101010001010a00010101000502030005
 
293
010100010147000901010003010100010101000201010004010100010101000101010006
 
294
0101000c016a000101010001010100010101000a01010005020300050101005301010003
 
295
010100010101000201010005010400010101000101010002010100000101007201010001
 
296
01010001010100010101000a010300030203000301030052010300030102000001010000
 
297
010300070101000201030004010200730101000101010001010100010101008801010001
 
298
010100820101000101010001010100010101008901030083010100010101000101010001
 
299
010100ff0011010100010101000101010001010100ff0011010100010101000101010001
 
300
010100ff0011010100010101000101010001010100ff0011010100010101000101010001
 
301
010100ff0011010100010101000101010001010100ff0011010100010101000101010001
 
302
010100ff0011010100010101000101010001010100ff0011010100010101000101010001
 
303
010100ff0011010100010101000101010001010100ff0011010100010101000101010001
 
304
010100ff0011010100010101000101010001010100ff0011010100010101000101010001
 
305
010100ff0011010100010101000101010001010100180105003a010300140102009b0101
 
306
0001010100010101000101010018010000000101000001000023010000170101000c0100
 
307
0005010100000101009a0101000101010001010100010101001a01010024010100170101
 
308
000b010100050101009d0101000101010001010100010101001a01010004010300020102
 
309
000001010002010200000101000101030002010500090101000001020004010100030103
 
310
000201050002010100050103000201020000010100010105008201010001010100010101
 
311
00010101001a010100070101000201010000010200000101000101010001010100010101
 
312
00020101000d010100010101000301010006010100020101000401040002010100010101
 
313
000201010000010200000101000001000000010100810101000101010001010100010101
 
314
001a010100040104000201020000010100000101000101010001010500020101000d0101
 
315
000101010003010100030104000201010005010100040101000101010002010200000101
 
316
00000101000001000000010100810101000101010001010100010101001a010100030101
 
317
000101010002010100040101000101010001010100060101000d01010001010100030101
 
318
000201010001010100020101000501010004010100010101000201010004010100000100
 
319
0000010100810101000101010001010100010101001a0101000301010001010100020101
 
320
0005010400010101000101010002010100000101000a0101000101010003010100020101
 
321
000101010002010100000101000201010004010100010101000201010004010100000100
 
322
000001010081010100010101000101010001010100190103000301020000010100000103
 
323
000701010002010300040102000b01040002010500010102000001010002010200020103
 
324
000401030002010300030101000201010081010100010101000101010001010100300101
 
325
00010101001a010100bd010100010101000101010001010100310103001a010300bc0101
 
326
000101010001010100010101001003ef001001010001010100010101000101010010030b
 
327
0401030a0401030c04040304040203030403030e04010303040303030402030304030303
 
328
040303020401030104010304050003040401036c00100101000101010001010100010101
 
329
0010030a0401030c0401030c04010300040103020401030004010301040103010401030c
 
330
040103030401030104010301040103000401030104010301040103010401030104010301
 
331
0401030104010303050103050401036b0010010100010101000101010001010100100309
 
332
0401030e0401030b04010301040103000401030204010300040103010401030b04010303
 
333
040103020401030004010302040103040401030104010301040103010401030104010301
 
334
050303060401036a0010010100010101000101010001010100100308040103100401030a
 
335
040103010401030004010302040103000401030e04010304040103050401030204010304
 
336
040103050401030104010301040103030501030704010369001001010001010100010101
 
337
0001010100100308040103100401030a040103010401030004010302040103010402030c
 
338
040103040401030504010302040103020402030504010302040103010401030305010307
 
339
040103690010010100010101000101010001010100100308040103100401030a04010301
 
340
0401030004010302040103030401030b0401030404010301040203000401030204010304
 
341
040103030401030304010301040103030501030704010369001001010001010100010101
 
342
00010101001003090401030e0401030b0401030104010300040103020401030004010301
 
343
0401030b0401030304010302040103000401030204010304040103020401030404010301
 
344
04010303050103060401036a001001010001010100010101000101010010030a0401030c
 
345
0401030c04010300040103020401030004010301040103010401030c0401030304010301
 
346
040103010401030004010301040103010401030104010301040103020403030405010305
 
347
0401036b001001010001010100010101000101010010030b0401030a0401030c04040304
 
348
040203030403030e04010303040403020402030304030302040503030401030305050302
 
349
0401036c00100101000101010001010100010101001003ef001001010001010100010101
 
350
00010101001003ef00100101000101010001010100010101001003ef0010010100010101
 
351
00010101000101010010030b0401030a0401030c05040304040203030403030e04010303
 
352
040303030402030304030303040303020401030104010302040303030401036c00100101
 
353
0001010100010101000101010010030a0401030c0401030c050103000501030204010300
 
354
04010301040103010401030c040103030401030104010301040103000401030104010301
 
355
040103010401030104010301040103010401030104010301040103030401036b00100101
 
356
000101010001010100010101001003090401030e0401030b050103010501030004010302
 
357
04010300040103010401030b040103030401030204010300040103020401030404010301
 
358
0401030104010301040103010401030104010301040103040401036a0010010100010101
 
359
000101010001010100100308040103100401030a05010301050103000401030204010300
 
360
0401030e0401030404010305040103020401030404010305040103010401030104010305
 
361
04010305040103690010010100010101000101010001010100100308040103100401030a
 
362
050103010501030004010302040103010402030c04010304040103050401030204010302
 
363
040203050401030204010301040103040401030604010369001001010001010100010101
 
364
0001010100100308040103100401030a050103010501030004010302040103030401030b
 
365
040103040401030104020300040103020401030404010303040103030401030104010303
 
366
040103070401036900100101000101010001010100010101001003090401030e0401030b
 
367
05010301050103000401030204010300040103010401030b040103030401030204010300
 
368
040103020401030404010302040103040401030104010302040103070401036a00100101
 
369
0001010100010101000101010010030a0401030c0401030c050103000501030204010300
 
370
04010301040103010401030c040103030401030104010301040103000401030104010301
 
371
0401030104010301040103020403030204010301040103030401036b0010010100010101
 
372
00010101000101010010030b0401030a0401030c05040304040203030403030e04010303
 
373
0404030204020303040303020405030304010303040503020401036c0010010100010101
 
374
0001010100010101001003ef00100101000101010001010100010101001003ef00100101
 
375
000101010001010100010101001003ef001001010001010100010101000101010010030b
 
376
0401030a0401030c050603180402030f0402039100100101000101010001010100010101
 
377
0010030a0401030c0401030c050103010501031904010310040103910010010100010101
 
378
0001010100010101001003090401030e0401030b05010302050003190401031004010391
 
379
0010010100010101000101010001010100100308040103100401030a0501030105000301
 
380
040203000401030204030303040303030404030204030303040403910010010100010101
 
381
000101010001010100100308040103100401030a05040302040103000402030004010301
 
382
040103010401030104010302040103010401030004010301040103010401030104010391
 
383
0010010100010101000101010001010100100308040103100401030a0501030105000302
 
384
040203000401030004050301040503020401030104010301040103040401030104010391
 
385
00100101000101010001010100010101001003090401030e0401030b0501030504010304
 
386
040103050401030604010301040103030401030204010301040103910010010100010101
 
387
00010101000101010010030a0401030c0401030c05010305040103040401030104010301
 
388
040103010401030204010301040103000401030104010301040103010401039100100101
 
389
0001010100010101000101010010030b0401030a0401030c050303030403030404030303
 
390
040303020401030004020302040303030402030004010390001001010001010100010101
 
391
00010101001003ef00100101000101010001010100010101001003ef0010010100010101
 
392
0001010100010101001003ef001001010001010100010101000101010010030b0401030a
 
393
0401030c05030306040103ba001001010001010100010101000101010010030a0401030c
 
394
0401030c05010307040103ba00100101000101010001010100010101001003090401030e
 
395
0401030b050103c40010010100010101000101010001010100100308040103100401030a
 
396
050103050403030204040302040103010401030104010302040103a00010010100010101
 
397
000101010001010100100308040103100401030a05010307040103020401030104010301
 
398
040103010401030204010300040103a10010010100010101000101010001010100100308
 
399
040103100401030a05010302050003030401030204010301040103010401030104010303
 
400
040203a200100101000101010001010100010101001003090401030e0401030b05010301
 
401
050103030401030204010301040103010401030104010303040203a20010010100010101
 
402
00010101000101010010030a0401030c0401030c05010301050103030401030204010301
 
403
04010301040103010401030204010300040103a100100101000101010001010100010101
 
404
0010030b0401030a0401030c050603010405030004010301040103020402030004010300
 
405
04010302040103a000100101000101010001010100010101001003ef0010010100010101
 
406
0001010100010101001003ef00100101000101010001010100010101001003ef00100101
 
407
0001010100010101000101010010030b0401030a0401030e050203030403030b040303aa
 
408
001001010001010100010101000101010010030a0401030c0401030c0501030005010301
 
409
04010301040103070400030004010301040103a900100101000101010001010100010101
 
410
001003090401030e0401030a050103020501030004010301040103060401030004010301
 
411
040103a90010010100010101000101010001010100100308040103100401030905010302
 
412
050103000401030904010305040103a90010010100010101000101010001010100100308
 
413
040103100401030905010302050103010402030604010305040103aa0010010100010101
 
414
000101010001010100100308040103100401030905010302050103030401030404010305
 
415
040103ab00100101000101010001010100010101001003090401030e0401030a05010302
 
416
05010300040103010401030204010305040103ac00100101000101010001010100010101
 
417
0010030a0401030c0401030c050103000501030104010301040103010401030504010301
 
418
040103a9001001010001010100010101000101010010030b0401030a0401030e05020303
 
419
0403030204000306040503a900100101000101010001010100010101001003ef00100101
 
420
000101010001010100010101001003ef00100101000101010001010100010101001003ef
 
421
001001010001010100010101000101010010030b0101030a0101030c0501030205010301
 
422
01030302010103020101030101030303010303a200100101000101010001010100010101
 
423
0010030a0101030c0101030b050103020501030201010303010103020101030001010301
 
424
0101030101010301010103a1001001010001010100010101000101010010030901010304
 
425
01010301010103030101030a050103020501030201010303010203010101030401010301
 
426
01010301010103a100100101000101010001010100010101001003080101030601030305
 
427
01010309050103020501030201010303010303000101030401010305010103a100100101
 
428
000101010001010100010101001003080101030401070303010103090501030005000300
 
429
05010302010103030106030201020305010103a200100101000101010001010100010101
 
430
001003080101030601030305010103090501030005000300050103020101030301010300
 
431
0103030401010303010103a3001001010001010100010101000101010010030901010304
 
432
01010301010103030101030b050103000501030301010303010103010102030401010302
 
433
010103a4001001010001010100010101000101010010030a0101030c0101030c05010300
 
434
05010303010103030101030201010300010103010101030101010301010103a100100101
 
435
0001010100010101000101010010030b0101030a0101030d050103000501030201030302
 
436
010103020101030101030302010503a100100101000101010001010100010101001003ef
 
437
00100101000101010001010100010101001003ef00100101000101010001010100010101
 
438
00ff0011010100010101000101010001010100ff00110101000101010001010100010101
 
439
00ff0011010100010101000101010001010100ff00110101000101010001010100010101
 
440
00ff0011010100010101000101010001010100ff00110101000101010001010100010101
 
441
00ff0011010100010101000101010001010100ff00110101000101010001010100010101
 
442
00ff0011010100010101000101010001010100ff00110101000101010001010100010101
 
443
00ff0011010100010101000101010001010100ff00110101000101010001010100010101
 
444
0038063f0027063f00300101000101010001010100010101003806190702060205020601
 
445
0501061800270609040306220403060a0030010100010101000101010001010100380618
 
446
070106000701060205010601050106180027060804010601040106230401060a00300101
 
447
000101010001010100010101003806170701060207010601050106000501061900270607
 
448
04010602040106230401060a003001010001010100010101000101010038061707010602
 
449
070106010501060005010619002706070401060604030602040406030403060304030605
 
450
0401060a003001010001010100010101000101010038061707010602070106010503061a
 
451
002706070401060904010601040106010401060104010601040106010401060104010604
 
452
0401060a0030010100010101000101010001010100380617070106020701060105010600
 
453
050106190407001f06070401060604040601040106010401060104010605040506040401
 
454
060a04070028010100010101000101010001010100380617070106020701060105010600
 
455
050106190407001f06070401060204010600040106010401060104010601040106010401
 
456
0605040106080401060a0407002801010001010100010101000101010038061807010600
 
457
0701060205010601050106180407001f0608040106010401060004010601040106010401
 
458
060104010601040106010401060104010601040106040401060a04070028010100010101
 
459
0001010100010101003806190702060205020601050106180407001f0609040306020402
 
460
060004010600040106010401060204030603040306030405060804070028010100010101
 
461
00010101000101010038063f0407001f063f040700280101000101010001010100010101
 
462
0038063f0407001f063f0407002801010001010100010101000101010040043f0027043f
 
463
002801010001010100010101000101010040043f0027043f002801010001010100010101
 
464
000101010040043f0027043f002801010001010100010101000101010040043f0027043f
 
465
002801010001010100010101000101010040043f0027043f002801010001010100010101
 
466
000101010040043f0027043f0028010100010101000101010001010100ff001101010001
 
467
0101000101010001010100ff0011010100010101000101010001010100ff001101010001
 
468
0101000101010001010100ff0011010100010101000101010001010100ff001101010001
 
469
0101000101010001010100ff0011010100010101000101010001010100ff001101010001
 
470
0101000101010001010100ff0011010100010101000101010001010100ff001101010001
 
471
0101000101010001010100ff001101010001010100010101000101ff0115000101010001
 
472
010100ff001901010001010100ff00190101000101ff011d00ff001f00ff001f00ff001f
 
473
00ff001f
 
474
%%EndData
 
475
end
 
476
%%PageTrailer
 
477
%%Trailer
 
478
%%BoundingBox: 0 0 287 155
 
479
%%EOF