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

« back to all changes in this revision

Viewing changes to fpcdocs/pics/ide/params.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: (params.eps)
 
4
%%CreationDate: (Tue Nov 28 23:50:42 2000)
 
5
%%BoundingBox: 0 0 431 83
 
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 432 84
 
267
userdict begin
 
268
%%BeginData:
 
269
DisplayImage
 
270
0 0
 
271
432 84
 
272
12.000000
 
273
432 84
 
274
1
 
275
0
 
276
0
 
277
9
 
278
c0c0c0
 
279
f8fcf8
 
280
00fc00
 
281
000080
 
282
008000
 
283
f8fc00
 
284
000000
 
285
f8fc78
 
286
00fcf8
 
287
00ff00af00120103000b01030069010500ff0018001201010005020300050101006a0101
 
288
00010101006a010000ab001201010005020300050101006a0101000101010069010100ab
 
289
0001010e0001010100050203000501010001015f00080101000101010000010200000101
 
290
000201030003010200000101000001020000010100020103000201050009010100000102
 
291
000201030002010200000101000201030002010500020103000201050002010300020102
 
292
0000010100020103000a018600010101000e01010005020300050101006a010400020101
 
293
000001020000010100010101000101010001010100020101000001020004010100010101
 
294
000001000000010100090101000101010004010100020101000001020004010100010101
 
295
000001000000010100000101000101010002010100040101000101010002010100000102
 
296
0000010100010101008e010100010101000e01010005020300050101006a010100050102
 
297
000001010000010100010101000101010001010100020102000001010001010400010101
 
298
000001000000010100090101000101010001010400020102000001010001010400010101
 
299
000001000000010100000105000201010004010500020102000001010001010100910101
 
300
000101010001010a0001010100050203000501010001015f000801010005010100040101
 
301
000101010001010100010101000201010004010100010101000101010000010000000101
 
302
000901010001010100000101000101010002010100040101000101010001010100000100
 
303
000001010000010100060101000401010006010100070101000a01820001010100010101
 
304
00010101000a01010005020300050101006a010100050101000401010001010100020104
 
305
000201010004010100010101000101010000010000000101000901010001010100000101
 
306
000101010002010100040101000101010001010100000100000001010000010100010101
 
307
00020101000001010001010100010101000201010004010100010101008a010100010101
 
308
0001010100010101000a0103000302030003010300690103000301030004010300060101
 
309
000101030004010200000101000001010002010100090104000201020000010100000103
 
310
000401020000010100000101000201010001010300040102000301030002010300040103
 
311
008b010100010101000101010001010100a00101000101010022010100d5010100010101
 
312
000101010001010100a101030022010300d4010100010101000101010001010100ff00a1
 
313
010100010101000101010001010100ff00a1010100010101000101010001010100ff00a1
 
314
010100010101000101010001010100ff00a1010100010101000101010001010100ff00a1
 
315
010100010101000101010001010100ff00a1010100010101000101010001010100ff00a1
 
316
010100010101000101010001010100ff00a1010100010101000101010001010100ff00a1
 
317
010100010101000101010001010100ff00a1010100010101000101010001010100ff00a1
 
318
010100010101000101010001010100ff00a10101000101010001010100010101007803ff
 
319
000704170008010100010101000101010001010100100505006103ff0007040106030404
 
320
0601040406030401000801010001010100010101000101010011050100010501002a0100
 
321
003403ff0007040106010406060104060601040100080101000101010001010100010101
 
322
001105010001050100290101003403ff0007040106010406060104060601040100080101
 
323
000101010001010100010101001105010001050100010103000201020000010100020103
 
324
000201050002010300020105000201030002010200000101002103ff0007040106010406
 
325
060104060601040100080101000101010001010100010101001105040005010100020101
 
326
000001020004010100010101000001000000010100000101000101010002010100040101
 
327
000101010002010100000102002003ff0007040106010406060104060601040100080101
 
328
000101010001010100010101001105010005010400020102000001010001010400010101
 
329
00000100000001010000010500020101000401050002010200000101002003ff00070401
 
330
060104060601040606010401000801010001010100010101000101010011050100040101
 
331
000101010002010100040101000101010001010100000100000001010000010100060101
 
332
0004010100060101002403ff000704010601040406050404060104010008010100010101
 
333
000101010001010100110501000401010001010100020101000401010001010100010101
 
334
000001000000010100000101000101010002010100000101000101010001010100020101
 
335
002403ff0007040106010405060304050601040100080101000101010001010100010101
 
336
001005030004010200000101000001030004010200000101000001010002010100010103
 
337
000401020003010300020103002303ff0007040106030404060104040603040100080101
 
338
00010101000101010001010100780307070703ef00070417000801010001010100010101
 
339
0001010100780307070703ef000704170008010100010101000101010001010100ff00a1
 
340
010100010101000101010001010100ff00a1010100010101000101010001010100ff00a1
 
341
010100010101000101010001010100ff00a1010100010101000101010001010100ff00a1
 
342
010100010101000101010001010100ff00a1010100010101000101010001010100ff00a1
 
343
010100010101000101010001010100ff00a1010100010101000101010001010100ff00a1
 
344
010100010101000101010001010100ff00a1010100010101000101010001010100ff00a1
 
345
010100010101000101010001010100ff00a101010001010100010101000101010058043f
 
346
006f043f0058010100010101000101010001010100580419080204020502040105010418
 
347
006f0409060304220603040a005801010001010100010101000101010058041808010400
 
348
080104020501040105010418006f040806010401060104230601040a0058010100010101
 
349
00010101000101010058041708010402080104010501040005010419006f040706010402
 
350
060104230601040a00580101000101010001010100010101005804170801040208010401
 
351
0501040005010419006f040706010406060304020604040306030403060304050601040a
 
352
005801010001010100010101000101010058041708010402080104010503041a006f0407
 
353
06010409060104010601040106010401060104010601040106010401060104040601040a
 
354
005801010001010100010101000101010058041708010402080104010501040005010419
 
355
0607006704070601040606040401060104010601040106010405060504040601040a0607
 
356
005001010001010100010101000101010058041708010402080104010501040005010419
 
357
060700670407060104020601040006010401060104010601040106010401060104050601
 
358
04080601040a060700500101000101010001010100010101005804180801040008010402
 
359
050104010501041806070067040806010401060104000601040106010401060104010601
 
360
0401060104010601040106010401060104040601040a0607005001010001010100010101
 
361
000101010058041908020402050204010501041806070067040906030402060204000601
 
362
040006010401060104020603040306030403060504080607005001010001010100010101
 
363
000101010058043f06070067043f0607005001010001010100010101000101010058043f
 
364
06070067043f0607005001010001010100010101000101010060063f006f063f00500101
 
365
0001010100010101000101010060063f006f063f00500101000101010001010100010101
 
366
0060063f006f063f005001010001010100010101000101010060063f006f063f00500101
 
367
0001010100010101000101010060063f006f063f00500101000101010001010100010101
 
368
0060063f006f063f0050010100010101000101010001010100ff00a10101000101010001
 
369
01010001010100ff00a1010100010101000101010001010100ff00a10101000101010001
 
370
01010001010100ff00a1010100010101000101010001010100ff00a10101000101010001
 
371
01010001010100ff00a1010100010101000101010001010100ff00a10101000101010001
 
372
01010001010100ff00a1010100010101000101010001010100ff00a10101000101010001
 
373
01010001010100ff00a101010001010100010101000101ff01a5000101010001010100ff
 
374
00a901010001010100ff00a90101000101ff01ad00ff00af00ff00af00ff00af00ff00af
 
375
 
 
376
%%EndData
 
377
end
 
378
%%PageTrailer
 
379
%%Trailer
 
380
%%BoundingBox: 0 0 431 83
 
381
%%EOF