tizen 2.3.1 release
[framework/uifw/elementary.git] / doc / screenshots / table_example_01.eps
1 %!PS-Adobe-3.0 EPSF-3.0
2 %%Creator: (ImageMagick)
3 %%Title: (../../doc/latex/screenshots/table_example_01.eps)
4 %%CreationDate: (2014-09-11T17:48:17+09:00)
5 %%BoundingBox: -0 -0 63 31
6 %%HiResBoundingBox: 0 0 63 31
7 %%DocumentData: Clean7Bit
8 %%LanguageLevel: 1
9 %%Pages: 1
10 %%EndComments
11
12 %%BeginDefaults
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 /DirectClassPacket
22 {
23   %
24   % Get a DirectClass packet.
25   %
26   % Parameters:
27   %   red.
28   %   green.
29   %   blue.
30   %   length: number of pixels minus one of this color (optional).
31   %
32   currentfile color_packet readhexstring pop pop
33   compression 0 eq
34   {
35     /number_pixels 3 def
36   }
37   {
38     currentfile byte readhexstring pop 0 get
39     /number_pixels exch 1 add 3 mul def
40   } ifelse
41   0 3 number_pixels 1 sub
42   {
43     pixels exch color_packet putinterval
44   } for
45   pixels 0 number_pixels getinterval
46 } bind def
47
48 /DirectClassImage
49 {
50   %
51   % Display a DirectClass image.
52   %
53   systemdict /colorimage known
54   {
55     columns rows 8
56     [
57       columns 0 0
58       rows neg 0 rows
59     ]
60     { DirectClassPacket } false 3 colorimage
61   }
62   {
63     %
64     % No colorimage operator;  convert to grayscale.
65     %
66     columns rows 8
67     [
68       columns 0 0
69       rows neg 0 rows
70     ]
71     { GrayDirectClassPacket } image
72   } ifelse
73 } bind def
74
75 /GrayDirectClassPacket
76 {
77   %
78   % Get a DirectClass packet;  convert to grayscale.
79   %
80   % Parameters:
81   %   red
82   %   green
83   %   blue
84   %   length: number of pixels minus one of this color (optional).
85   %
86   currentfile color_packet readhexstring pop pop
87   color_packet 0 get 0.299 mul
88   color_packet 1 get 0.587 mul add
89   color_packet 2 get 0.114 mul add
90   cvi
91   /gray_packet exch def
92   compression 0 eq
93   {
94     /number_pixels 1 def
95   }
96   {
97     currentfile byte readhexstring pop 0 get
98     /number_pixels exch 1 add def
99   } ifelse
100   0 1 number_pixels 1 sub
101   {
102     pixels exch gray_packet put
103   } for
104   pixels 0 number_pixels getinterval
105 } bind def
106
107 /GrayPseudoClassPacket
108 {
109   %
110   % Get a PseudoClass packet;  convert to grayscale.
111   %
112   % Parameters:
113   %   index: index into the colormap.
114   %   length: number of pixels minus one of this color (optional).
115   %
116   currentfile byte readhexstring pop 0 get
117   /offset exch 3 mul def
118   /color_packet colormap offset 3 getinterval def
119   color_packet 0 get 0.299 mul
120   color_packet 1 get 0.587 mul add
121   color_packet 2 get 0.114 mul add
122   cvi
123   /gray_packet exch def
124   compression 0 eq
125   {
126     /number_pixels 1 def
127   }
128   {
129     currentfile byte readhexstring pop 0 get
130     /number_pixels exch 1 add def
131   } ifelse
132   0 1 number_pixels 1 sub
133   {
134     pixels exch gray_packet put
135   } for
136   pixels 0 number_pixels getinterval
137 } bind def
138
139 /PseudoClassPacket
140 {
141   %
142   % Get a PseudoClass packet.
143   %
144   % Parameters:
145   %   index: index into the colormap.
146   %   length: number of pixels minus one of this color (optional).
147   %
148   currentfile byte readhexstring pop 0 get
149   /offset exch 3 mul def
150   /color_packet colormap offset 3 getinterval def
151   compression 0 eq
152   {
153     /number_pixels 3 def
154   }
155   {
156     currentfile byte readhexstring pop 0 get
157     /number_pixels exch 1 add 3 mul def
158   } ifelse
159   0 3 number_pixels 1 sub
160   {
161     pixels exch color_packet putinterval
162   } for
163   pixels 0 number_pixels getinterval
164 } bind def
165
166 /PseudoClassImage
167 {
168   %
169   % Display a PseudoClass image.
170   %
171   % Parameters:
172   %   class: 0-PseudoClass or 1-Grayscale.
173   %
174   currentfile buffer readline pop
175   token pop /class exch def pop
176   class 0 gt
177   {
178     currentfile buffer readline pop
179     token pop /depth exch def pop
180     /grays columns 8 add depth sub depth mul 8 idiv string def
181     columns rows depth
182     [
183       columns 0 0
184       rows neg 0 rows
185     ]
186     { currentfile grays readhexstring pop } image
187   }
188   {
189     %
190     % Parameters:
191     %   colors: number of colors in the colormap.
192     %   colormap: red, green, blue color packets.
193     %
194     currentfile buffer readline pop
195     token pop /colors exch def pop
196     /colors colors 3 mul def
197     /colormap colors string def
198     currentfile colormap readhexstring pop pop
199     systemdict /colorimage known
200     {
201       columns rows 8
202       [
203         columns 0 0
204         rows neg 0 rows
205       ]
206       { PseudoClassPacket } false 3 colorimage
207     }
208     {
209       %
210       % No colorimage operator;  convert to grayscale.
211       %
212       columns rows 8
213       [
214         columns 0 0
215         rows neg 0 rows
216       ]
217       { GrayPseudoClassPacket } image
218     } ifelse
219   } ifelse
220 } bind def
221
222 /DisplayImage
223 {
224   %
225   % Display a DirectClass or PseudoClass image.
226   %
227   % Parameters:
228   %   x & y translation.
229   %   x & y scale.
230   %   label pointsize.
231   %   image label.
232   %   image columns & rows.
233   %   class: 0-DirectClass or 1-PseudoClass.
234   %   compression: 0-none or 1-RunlengthEncoded.
235   %   hex color packets.
236   %
237   gsave
238   /buffer 512 string def
239   /byte 1 string def
240   /color_packet 3 string def
241   /pixels 768 string def
242
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   /Times-Roman 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 63 31
267 userdict begin
268 DisplayImage
269 0 0
270 63 31
271 12
272 63 31
273 0
274 0
275 474747474747474747474747474747474747474747474747474747474747474747474747474747
276 474747474747474747474747474747474747474747474747474747474747474747474747474747
277 474747474747474747474747474747474747474747474747474747474747474747474747474747
278 474747474747474747474747474747474747474747474747474747474747474747474747474747
279 474747474747474747474747474747474747474747474747474747474747474747494949404040
280 404040404040404040404040404040404040404040404040404040404040404040404040404040
281 404040404040404040404040404040404040404040404040404040404040404040404040404040
282 404040404040404040404040404040404040404040404040404040404040404040404040404040
283 404040404040404040404040404040404040404040404040404040404040404040404040404040
284 404040404040404040404040404040404040404040404040303030494949BFBFBF404040404040
285 4040404040404040404C4C4CA5A5A5404040404040404040404040404040404040404040404040
286 404040404040BFBFBF404040404040404040404040404040404040404040404040404040404040
287 404040404040404040404040404040404040BFBFBF4040404040404040404040404040404C4C4C
288 A5A5A5404040404040404040404040404040404040404040404040404040404040BFBFBF404040
289 404040404040404040404040404040404040303030555555B7B7B7404040404040404040404040
290 4040405656569D9D9D4040404040404040404040404040404040404040404040404040404C4C4C
291 B7B7B74040404040404040404040408C8C8CF2F2F2F2F2F2A5A5A5404040404040404040404040
292 4040404040404040404C4C4CB7B7B74040404040404040404040404040405656569D9D9D404040
293 4040404040404040404040404040404040404040404040404C4C4CB7B7B7404040404040404040
294 404040404040999999BFBFBF303030525252B7B7B7404040404040404040404040404040555555
295 B9B9B9D8D8D8FFFFFFB2B2B2404040404040404040404040404040404040494949B7B7B7404040
296 404040404040595959D6D6D6303030303030C7C7C7666666404040404040404040404040404040
297 404040494949B7B7B7404040404040404040404040404040555555B9B9B9D8D8D8FFFFFFB2B2B2
298 404040404040404040404040404040404040494949B7B7B74040404040404040404040407F7F7F
299 838383C6C6C6303030525252B7B7B7404040FFFFFFFFFFFFF2F2F2666666555555F0F0F0515151
300 2D2D2DC6C6C6737373404040999999F2F2F2E5E5E5666666494949B7B7B7404040404040404040
301 7C7C7C7C7C7C3D3D3D3D3D3D616161959595404040404040404040404040404040404040494949
302 B7B7B7404040FFFFFFFFFFFFF2F2F2666666555555F0F0F05151512D2D2DC6C6C6737373404040
303 999999F2F2F2E5E5E5666666494949B7B7B7404040404040404040404040353535333333C5C5C5
304 303030525252B7B7B74040401F1F1F1F1F1F3F3F3FBCBCBC555555A6A6A63939393D3D3D616161
305 949494666666ACACAC222222414141CACACA494949B7B7B7404040404040404040787878848484
306 4040404040405F5F5F919191404040404040404040404040404040404040494949B7B7B7404040
307 1F1F1F1F1F1F3F3F3FBCBCBC555555A6A6A63939393D3D3D616161949494666666ACACAC222222
308 414141CACACA494949B7B7B7404040404040404040404040404040404040C5C5C5303030525252
309 B7B7B7404040B2B2B2F2F2F2FFFFFFC6C6C6555555B8B8B84040404040406C6C6C919191888888
310 FFFFFFFFFFFFFFFFFFFFFFFF494949B7B7B74040404040404040406A6A6A9F9F9F404040404040
311 888888757575404040404040404040404040404040404040494949B7B7B7404040B2B2B2F2F2F2
312 FFFFFFC6C6C6555555B8B8B84040404040406C6C6C919191888888FFFFFFFFFFFFFFFFFFFFFFFF
313 494949B7B7B7404040404040404040404040404040404040C5C5C5303030525252B7B7B78C8C8C
314 AAAAAA3030305A5A5AB7B7B7555555FFFFFF6666664C4C4CC9C9C95A5A5A777777A5A5A51F1F1F
315 1F1F1F1F1F1F494949B7B7B7404040404040404040373737E3E3E35959594C4C4CE3E3E3424242
316 404040404040404040404040404040404040494949B7B7B78C8C8CAAAAAA3030305A5A5AB7B7B7
317 555555FFFFFF6666664C4C4CC9C9C95A5A5A777777A5A5A51F1F1F1F1F1F1F1F1F494949B7B7B7
318 404040404040404040404040404040404040C5C5C5303030464646B7B7B75B5B5BF0F0F0FFFFFF
319 C9C9C9B7B7B7484848B4B4B4E4E4E4FFFFFF9A9A9A393939353535AAAAAAF2F2F2FFFFFFB2B2B2
320 3D3D3DB7B7B74040404040404040404040405E5E5EE4E4E4F2F2F27B7B7B3D3D3D404040404040
321 4040404040404040404040403D3D3DB7B7B75B5B5BF0F0F0FFFFFFC9C9C9B7B7B7484848B4B4B4
322 E4E4E4FFFFFF9A9A9A393939353535AAAAAAF2F2F2FFFFFFB2B2B23D3D3DB7B7B7404040404040
323 404040404040404040404040B7B7B73030304949492A2A2A3939392222221F1F1F2828282A2A2A
324 3D3D3D2A2A2A2424241F1F1F2F2F2F4040404040402C2C2C2222221F1F1F2C2C2C4040402A2A2A
325 404040404040404040404040373737242424222222333333404040404040404040404040404040
326 4040404040404040402A2A2A3939392222221F1F1F2828282A2A2A3D3D3D2A2A2A2424241F1F1F
327 2F2F2F4040404040402C2C2C2222221F1F1F2C2C2C4040402A2A2A404040404040404040404040
328 4040404040402A2A2A303030494949404040404040404040404040404040404040404040404040
329 404040404040404040404040404040404040404040404040404040404040404040404040404040
330 404040404040404040404040404040404040404040404040404040404040404040404040404040
331 404040404040404040404040404040404040404040404040404040404040404040404040404040
332 404040404040404040404040404040404040404040404040404040404040404040404040404040
333 404040303030494949404040404040404040404040404040404040404040404040404040404040
334 404040404040404040404040404040404040404040404040404040404040404040404040404040
335 404040404040404040404040404040404040404040404040404040404040404040404040404040
336 404040404040404040404040404040404040404040404040404040404040404040404040404040
337 404040404040404040404040404040404040404040404040404040404040404040404040303030
338 494949404040404040404040404040404040404040404040404040404040404040404040404040
339 404040404040404040404040404040404040404040404040404040404040404040404040404040
340 404040404040404040404040404040404040404040404040404040404040404040404040404040
341 404040404040404040404040404040404040404040404040404040404040404040404040404040
342 404040404040404040404040404040404040404040404040404040404040303030494949404040
343 404040404040404040404040404040404040404040404040404040404040404040404040404040
344 404040404040404040404040404040404040404040404040404040404040404040404040404040
345 404040404040404040404040404040404040404040404040404040404040404040404040404040
346 404040404040404040404040404040404040404040404040404040404040404040404040404040
347 404040404040404040404040404040404040404040404040303030494949404040404040404040
348 404040404040404040404040404040404040404040404040404040404040404040404040404040
349 404040404040404040404040404040404040404040404040404040404040404040404040404040
350 404040404040404040404040404040404040404040404040404040404040404040404040404040
351 404040404040404040404040404040404040404040404040404040404040404040404040404040
352 404040404040404040404040404040404040303030494949404040404040404040404040404040
353 404040404040404040404040404040404040404040404040404040404040404040404040404040
354 404040404040404040404040404040404040404040404040404040404040404040404040404040
355 404040404040404040404040404040404040404040404040404040404040404040404040404040
356 404040404040404040404040404040404040404040404040404040404040404040404040404040
357 404040404040404040404040303030494949404040404040404040404040404040404040404040
358 404040404040404040404040404040404040404040404040404040404040404040404040404040
359 404040404040404040404040404040404040404040404040404040404040404040404040404040
360 404040404040404040404040404040404040404040404040404040404040404040404040404040
361 404040404040404040404040404040404040404040404040404040404040404040404040404040
362 404040404040303030494949404040404040404040404040404040404040404040404040404040
363 404040404040404040404040404040404040404040404040404040404040404040404040404040
364 404040404040404040404040404040404040404040404040404040404040404040404040404040
365 404040404040404040404040404040404040404040404040404040404040404040404040404040
366 404040404040404040404040404040404040404040404040404040404040404040404040404040
367 303030494949404040404040404040404040404040404040404040404040404040404040404040
368 404040404040404040404040404040404040404040404040404040404040404040404040404040
369 404040404040404040404040404040404040404040404040404040404040404040404040404040
370 404040404040404040404040404040404040404040404040404040404040404040404040404040
371 404040404040404040404040404040404040404040404040404040404040404040303030494949
372 BFBFBF4040404040404040404040404040404C4C4CA5A5A5404040404040404040404040404040
373 404040404040404040404040404040BFBFBF404040404040404040404040404040404040404040
374 404040404040404040404040404040404040404040404040BFBFBF404040404040404040404040
375 4040404C4C4CA5A5A5404040404040404040404040404040404040404040404040404040404040
376 BFBFBF404040404040404040404040404040404040404040404040303030555555B7B7B7404040
377 4040404040404040404040405656569D9D9D404040404040404040404040404040404040404040
378 4040404040404C4C4CB7B7B7404040404040404040404040FFFFFFFFFFFFF2F2F27F7F7F404040
379 4040404040404040404040404040404C4C4CB7B7B7404040404040404040404040404040565656
380 9D9D9D4040404040404040404040404040404040404040404040404040404C4C4CB7B7B7404040
381 404040404040404040FFFFFFFFFFFFF2F2F28C8C8C303030525252B7B7B7404040404040404040
382 404040404040555555B9B9B9D8D8D8FFFFFFB2B2B2404040404040404040404040404040404040
383 494949B7B7B74040404040404040404040401F1F1F1F1F1F3F3F3FD6D6D6404040404040404040
384 404040404040404040494949B7B7B7404040404040404040404040404040555555B9B9B9D8D8D8
385 FFFFFFB2B2B2404040404040404040404040404040404040494949B7B7B7404040404040404040
386 4040401F1F1F1F1F1F303030D6D6D63D3D3D525252B7B7B7404040FFFFFFFFFFFFF2F2F2666666
387 555555F0F0F05151512D2D2DC6C6C6737373404040999999F2F2F2E5E5E5666666494949B7B7B7
388 404040404040404040404040404040404040484848B6B6B6404040404040404040404040404040
389 404040494949B7B7B7404040FFFFFFFFFFFFF2F2F2666666555555F0F0F05151512D2D2DC6C6C6
390 737373404040999999F2F2F2E5E5E5666666494949B7B7B7404040404040404040404040404040
391 404040636363C5C5C52E2E2E525252B7B7B74040401F1F1F1F1F1F3F3F3FBCBCBC555555A6A6A6
392 3939393D3D3D616161949494666666ACACAC222222414141CACACA494949B7B7B7404040404040
393 404040404040404040404040BEBEBE464646404040404040404040404040404040404040494949
394 B7B7B74040401F1F1F1F1F1F3F3F3FBCBCBC555555A6A6A63939393D3D3D616161949494666666
395 ACACAC222222414141CACACA494949B7B7B7404040404040404040404040737373FFFFFFFFFFFF
396 535353303030525252B7B7B7404040B2B2B2F2F2F2FFFFFFC6C6C6555555B8B8B8404040404040
397 6C6C6C919191888888FFFFFFFFFFFFFFFFFFFFFFFF494949B7B7B7404040404040404040404040
398 404040B2B2B24646463B3B3B404040404040404040404040404040404040494949B7B7B7404040
399 B2B2B2F2F2F2FFFFFFC6C6C6555555B8B8B84040404040406C6C6C919191888888FFFFFFFFFFFF
400 FFFFFFFFFFFF494949B7B7B74040404040404040404040403737371F1F1F3C3C3CCACACA303030
401 525252B7B7B78C8C8CAAAAAA3030305A5A5AB7B7B7555555FFFFFF6666664C4C4CC9C9C95A5A5A
402 777777A5A5A51F1F1F1F1F1F1F1F1F494949B7B7B7404040404040404040404040BFBFBF484848
403 3B3B3B404040404040404040404040404040404040404040494949B7B7B78C8C8CAAAAAA303030
404 5A5A5AB7B7B7555555FFFFFF6666664C4C4CC9C9C95A5A5A777777A5A5A51F1F1F1F1F1F1F1F1F
405 494949B7B7B7404040404040404040404040404040404040555555D3D3D33D3D3D464646B7B7B7
406 5B5B5BF0F0F0FFFFFFC9C9C9B7B7B7484848B4B4B4E4E4E4FFFFFF9A9A9A393939353535AAAAAA
407 F2F2F2FFFFFFB2B2B23D3D3DB7B7B74040404040404040407F7F7FFFFFFFFFFFFFFFFFFFFFFFFF
408 4C4C4C4040404040404040404040404040403D3D3DB7B7B75B5B5BF0F0F0FFFFFFC9C9C9B7B7B7
409 484848B4B4B4E4E4E4FFFFFF9A9A9A393939353535AAAAAAF2F2F2FFFFFFB2B2B23D3D3DB7B7B7
410 4040404040404040407F7F7FFFFFFFFFFFFFE4E4E47C7C7C2E2E2E4949492A2A2A393939222222
411 1F1F1F2828282A2A2A3D3D3D2A2A2A2424241F1F1F2F2F2F4040404040402C2C2C2222221F1F1F
412 2C2C2C4040402A2A2A4040404040404040403535351F1F1F1F1F1F1F1F1F1F1F1F3D3D3D404040
413 4040404040404040404040404040402A2A2A3939392222221F1F1F2828282A2A2A3D3D3D2A2A2A
414 2424241F1F1F2F2F2F4040404040402C2C2C2222221F1F1F2C2C2C4040402A2A2A404040404040
415 4040403535351F1F1F1F1F1F242424333333303030494949404040404040404040404040404040
416 404040404040404040404040404040404040404040404040404040404040404040404040404040
417 404040404040404040404040404040404040404040404040404040404040404040404040404040
418 404040404040404040404040404040404040404040404040404040404040404040404040404040
419 404040404040404040404040404040404040404040404040404040404040404040404040404040
420 404040404040404040404040303030303030303030303030303030303030303030303030303030
421 303030303030303030303030303030303030303030303030303030303030303030303030303030
422 303030303030303030303030303030303030303030303030303030303030303030303030303030
423 303030303030303030303030303030303030303030303030303030303030303030303030303030
424 303030303030303030303030303030303030303030303030303030303030303030303030303030
425 303030303030303030
426
427 end
428 %%PageTrailer
429 %%Trailer
430 %%EOF