tizen 2.3.1 release
[framework/uifw/elementary.git] / doc / img / widget / flipselector / preview-00.eps
1 %!PS-Adobe-3.0 EPSF-3.0
2 %%Creator: (ImageMagick)
3 %%Title: (../doc/latex/img/widget/flipselector/preview-00.eps)
4 %%CreationDate: (2014-09-11T12:22:05+09:00)
5 %%BoundingBox: -0 -0 45 44
6 %%HiResBoundingBox: 0 0 45 44
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 45 44
267 userdict begin
268 DisplayImage
269 0 0
270 45 44
271 12
272 45 44
273 0
274 0
275 474747474747474747474747474747474747474747474747474747474747474747474747474747
276 474747474747474747474747474747474747474747474747474747474747474747474747474747
277 474747474747474747474747474747474747474747474747474747474747474747474747474747
278 474747474747474747474747474747474747494949404040404040404040404040404040404040
279 404040404040404040404040404040404040404040404040404040404040404040404040404040
280 404040404040404040404040404040404040404040404040404040404040404040404040404040
281 404040404040404040404040404040404040404040404040404040404040404040303030494949
282 404040404040404040404040404040404040404040404040404040404040404040404040404040
283 404040404040404040404040404040404040404040404040404040404040404040404040404040
284 404040404040404040404040404040404040404040404040404040404040404040404040404040
285 4040404040404040404040403030304949494040404040404040403F3F3F3F3F3F3F3F3F3F3F3F
286 3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F
287 3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F
288 3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F404040404040404040303030494949404040
289 4040403F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F
290 3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F
291 3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F
292 3F3F3F4040404040403030304949493F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3E3E3E3E3E3E3E3E3E
293 3E3E3E3E3E3E3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D
294 3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3E3E3E
295 3E3E3E3E3E3E3E3E3E3E3E3E3F3F3F3F3F3F3F3F3F3F3F3F3F3F3F3030304949493F3F3F3F3F3F
296 3F3F3F3E3E3E3E3E3E696969696969696969696969696969696969696969696969696969696969
297 696969696969696969696969696969696969696969696969696969696969696969696969696969
298 6969696969696969696969696969696969696969696969696969696969693E3E3E3E3E3E3F3F3F
299 3F3F3F3F3F3F3030304848483F3F3F3F3F3F3E3E3E3D3D3D3C3C3C414141383838383838383838
300 383838383838383838383838383838383838383838383838383838383838383838383838383838
301 383838383838383838383838383838383838383838383838383838383838383838383838383838
302 3838383838382A2A2A3C3C3C3D3D3D3E3E3E3F3F3F3F3F3F2F2F2F4848483F3F3F3E3E3E3D3D3D
303 3C3C3C3A3A3A414141383838383838383838383838383838383838383838383838383838383838
304 383838383838383838383838383838383838383838383838383838383838383838383838383838
305 3838383838383838383838383838383838383838383838382A2A2A3A3A3A3C3C3C3D3D3D3E3E3E
306 3F3F3F2F2F2F4848483F3F3F3E3E3E3C3C3C3A3A3A373737414141383838383838383838383838
307 383838383838383838383838383838383838383838383838383838383838383838383838383838
308 383838383838383838383838383838383838383838383838383838383838383838383838383838
309 3838382A2A2A3737373A3A3A3C3C3C3E3E3E3F3F3F2F2F2F4848483E3E3E3D3D3D3B3B3B383838
310 343434414141383838383838383838383838383838383838383838383838383838383838383838
311 383838383838383838373737373737373737383838383838383838383838383838383838383838
312 3838383838383838383838383838383838383838382A2A2A3434343838383B3B3B3D3D3D3E3E3E
313 2F2F2F4848483E3E3E3C3C3C3A3A3A363636313131414141383838383838383838383838383838
314 383838383838383838383838383838383838383838383838363636333333C0BFC0333333363636
315 383838383838383838383838383838383838383838383838383838383838383838383838383838
316 2A2A2A3131313636363A3A3A3C3C3C3E3E3E2F2F2F4848483E3E3E3C3C3C3939393434342F2F2F
317 414141383838383838383838383838383838383838383838383838383838383838383838383838
318 363636313131C0BFC0B7B6B7C0BFC0313131363636383838383838383838383838383838383838
319 3838383838383838383838383838383838382A2A2A2F2F2F3434343939393C3C3C3E3E3E2F2F2F
320 4848483E3E3E3C3C3C3838383333332D2D2D414141383838383838383838383838383838383838
321 383838383838383838383838383838363636313131C0BFC0B7B6B7AEADAEB7B6B7C0BFC0313131
322 3636363838383838383838383838383838383838383838383838383838383838383838382A2A2A
323 2D2D2D3333333838383C3C3C3E3E3E2F2F2F4747473E3E3E3B3B3B3838383333332C2C2C414141
324 383838383838383838383838383838383838383838383838383838383838373737333333C0BFC0
325 B7B6B7AEADAE0A0A0AAEADAEB7B6B7C0BFC0333333373737383838383838383838383838383838
326 3838383838383838383838383838382A2A2A2C2C2C3333333838383B3B3B3E3E3E2F2F2F474747
327 3E3E3E3B3B3B3737373232322C2C2C414141383838383838383838383838383838383838383838
328 3838383838383838383737373030301F1F1FAEADAE1313131A1A1A131313AEADAE1F1F1F303030
329 3636363838383838383838383838383838383838383838383838383838383838382A2A2A2C2C2C
330 3232323737373B3B3B3E3E3E2F2F2F4747473E3E3E3B3B3B3737373232322B2B2B414141383838
331 3838383838383838383838383838383838383838383838383838383737373333332727271F1F1F
332 2525252C2C2C2525251F1F1F272727333333373737383838383838383838383838383838383838
333 3838383838383838383838382A2A2A2B2B2B3232323737373B3B3B3D3D3D2F2F2F4747473D3D3D
334 3B3B3B3737373232322B2B2B414141383838383838383838383838383838414141929292383838
335 383838383838383838363636333333303030333333353535333333303030333333363636383838
336 3838383838383838383838383838383838383838383838383838383838382A2A2A2B2B2B323232
337 3737373B3B3B3D3D3D2F2F2F4747473D3D3D3B3B3B3737373232322B2B2B414141383838383838
338 3838383838383838383F3F3F8C8C8C383838898989383838383838383838373737373737373737
339 373737373737373737373737383838383838383838383838383838383838383838383838383838
340 3838383838383838382A2A2A2B2B2B3232323737373B3B3B3D3D3D2F2F2F4747473D3D3D3B3B3B
341 3737373232322B2B2B4141413838383838383838383838383838383F3F3F8C8C8C929292C0C0C0
342 C0C0C05C5C5C383838777777B6B6B6ADADAD5353534141419B9B9BADADADC0C0C07777779B9B9B
343 C0C0C08989893838383838383838383838383838383838383838382A2A2A2B2B2B323232373737
344 3B3B3B3D3D3D2F2F2F4747473D3D3D3B3B3B3737373232322B2B2B414141383838383838383838
345 3838383838383F3F3F8C8C8C2525258888882626263030305353538383831D1D1D3434349A9A9A
346 3F3F3FAAAAAA343434262626ABABAB5757571B1B1B8C8C8C4A4A4A383838383838383838383838
347 3838383838382A2A2A2B2B2B3232323737373B3B3B3D3D3D2F2F2F4747473D3D3D3B3B3B373737
348 3232322B2B2B4141413838383838383838383838383838383F3F3F8C8C8C3838388C8C8C3F3F3F
349 3838386B6B6BC0C0C0C0C0C0C0C0C0C0C0C03F3F3F7F7F7F3434343636369595952E2E2E383838
350 6D6D6D5050503838383838383838383838383838383838382A2A2A2B2B2B3232323737373B3B3B
351 3D3D3D2F2F2F4747473D3D3D3B3B3B3737373232322B2B2B505050484848484848484848484848
352 484848515151B9B9B9484848ACACAC5D5D5D4848487B7B7BA6A6A6232323232323232323515151
353 ACACAC484848484848B8B8B8484848484848949494666666484848484848484848484848484848
354 4848483636362B2B2B3232323737373B3B3B3D3D3D2F2F2F4747473D3D3D3B3B3B373737323232
355 2B2B2B505050484848484848484848484848484848515151B9B9B9484848848484FFFFFFA9A9A9
356 3B3B3BACACACF2F2F2FFFFFFB5B5B5454545ACACAC484848484848B9B9B9484848484848949494
357 5959594848484848484848484848484848484848483636362B2B2B3232323737373B3B3B3D3D3D
358 2F2F2F4747473D3D3D3B3B3B3737373232322B2B2B505050484848484848484848484848484848
359 454545303030484848393939232323343434484848323232262626232323323232484848323232
360 484848484848303030484848484848373737434343484848484848484848484848484848484848
361 3636362B2B2B3232323737373B3B3B3D3D3D2F2F2F4747473D3D3D3B3B3B3737373232322B2B2B
362 505050484848484848484848484848484848484848484848484848484848484848484848484848
363 484848484848484848484848484848484848484848484848484848484848484848484848484848
364 4848484848484848484848484848484848483636362B2B2B3232323737373B3B3B3D3D3D2F2F2F
365 4747473D3D3D3B3B3B3737373232322B2B2B505050484848484848484848484848484848484848
366 484848484848484848484848484848484848484848484848484848484848484848484848484848
367 484848484848484848484848484848484848484848484848484848484848484848484848363636
368 2B2B2B3232323737373B3B3B3D3D3D2F2F2F4747473E3E3E3B3B3B3737373232322B2B2B505050
369 484848484848484848484848484848484848484848484848484848484848484848484848474747
370 464646474747474747474747464646474747484848484848484848484848484848484848484848
371 4848484848484848484848484848483636362B2B2B3232323737373B3B3B3D3D3D2F2F2F474747
372 3E3E3E3B3B3B3737373232322B2B2B505050484848484848484848484848484848484848484848
373 484848484848484848484848464646424242FFFFFF424242454545414141FFFFFF424242464646
374 4848484848484848484848484848484848484848484848484848484848484848483636362B2B2B
375 3232323737373B3B3B3D3D3D2F2F2F4747473E3E3E3B3B3B3737373232322B2B2B505050484848
376 484848484848484848484848484848484848484848484848484848474747424242FFFFFFF3F3F3
377 FFFFFF393939FFFFFFF3F3F3FFFFFF424242474747484848484848484848484848484848484848
378 4848484848484848484848483636362B2B2B3232323737373B3B3B3D3D3D2F2F2F4747473E3E3E
379 3B3B3B3737373232322B2B2B505050484848484848484848484848484848484848484848484848
380 4848484848484646463D3D3D272727E7E7E7F3F3F3FFFFFFF3F3F3E7E7E72727273D3D3D464646
381 4848484848484848484848484848484848484848484848484848484848483636362B2B2B323232
382 3737373B3B3B3D3D3D2F2F2F4747473E3E3E3B3B3B3737373232322B2B2B505050484848484848
383 4848484848484848484848484848484848484848484848484747474242423131311B1B1BE7E7E7
384 F3F3F3E7E7E71B1B1B313131414141474747484848484848484848484848484848484848484848
385 4848484848484848483636362B2B2B3232323737373B3B3B3D3D3D2F2F2F4747473E3E3E3B3B3B
386 3737373232322B2B2B505050484848484848484848484848484848484848484848484848484848
387 4848484848484646464040402F2F2F1A1A1AE7E7E71A1A1A2F2F2F404040464646484848484848
388 4848484848484848484848484848484848484848484848484848483636362B2B2B323232373737
389 3B3B3B3D3D3D2F2F2F4747473E3E3E3B3B3B3737373232322B2B2B505050484848484848484848
390 484848484848484848484848484848484848484848484848484848464646404040313131272727
391 313131404040464646484848484848484848484848484848484848484848484848484848484848
392 4848484848483636362B2B2B3232323737373B3B3B3D3D3D2F2F2F4747473E3E3E3B3B3B373737
393 3232322B2B2B505050484848484848484848484848484848484848484848484848484848484848
394 4848484848484848484646464141413D3D3D414141464646484848484848484848484848484848
395 4848484848484848484848484848484848484848484848483636362B2B2B3232323737373B3B3B
396 3D3D3D2F2F2F4747473E3E3E3B3B3B3737373232322B2B2B505050484848484848484848484848
397 484848484848484848484848484848484848484848484848484848484848474747464646474747
398 484848484848484848484848484848484848484848484848484848484848484848484848484848
399 4848483636362B2B2B3232323737373B3B3B3D3D3D2F2F2F4747473E3E3E3B3B3B373737323232
400 2C2C2C505050484848484848484848484848484848484848484848484848484848484848484848
401 484848484848484848484848484848484848484848484848484848484848484848484848484848
402 4848484848484848484848484848484848484848483636362C2C2C3232323737373B3B3B3E3E3E
403 2F2F2F4747473E3E3E3B3B3B3838383333332C2C2C363636363636363636363636363636363636
404 363636363636363636363636363636363636363636363636363636363636363636363636363636
405 363636363636363636363636363636363636363636363636363636363636363636363636363636
406 3636362C2C2C3333333838383B3B3B3E3E3E2F2F2F4848483E3E3E3C3C3C3838383333332D2D2D
407 2727272121211C1C1C181818161616151515151515151515151515151515151515151515151515
408 151515151515151515151515151515151515151515151515151515151515151515151515151515
409 1515151515151616161818181C1C1C2121212727272D2D2D3333333838383C3C3C3E3E3E2F2F2F
410 4848483E3E3E3C3C3C3939393434342F2F2F2929292424241F1F1F1C1C1C1A1A1A191919181818
411 181818181818181818181818181818181818181818181818181818181818181818181818181818
412 1818181818181818181818181818181818181818181919191A1A1A1C1C1C1F1F1F242424292929
413 2F2F2F3434343939393C3C3C3E3E3E2F2F2F4848483E3E3E3C3C3C3A3A3A3636363131312C2C2C
414 2727272424242121211F1F1F1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E
415 1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E1E
416 1E1E1E1F1F1F2121212424242727272C2C2C3131313636363A3A3A3C3C3C3E3E3E2F2F2F484848
417 3E3E3E3D3D3D3B3B3B3838383434343030302C2C2C292929272727262626252525242424242424
418 242424242424242424242424242424242424242424242424242424242424242424242424242424
419 2424242424242424242424242424242424242525252626262727272929292C2C2C303030343434
420 3838383B3B3B3D3D3D3E3E3E2F2F2F4848483F3F3F3E3E3E3C3C3C3A3A3A373737343434313131
421 2F2F2F2D2D2D2C2C2C2C2C2C2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B
422 2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2B2C2C2C
423 2C2C2C2D2D2D2F2F2F3131313434343737373A3A3A3C3C3C3E3E3E3F3F3F2F2F2F2F2F2F2F2F2F
424 2F2F2F2E2E2E2D2D2D2B2B2B2A2A2A282828272727262626262626252525252525252525252525
425 252525252525252525252525252525252525252525252525252525252525252525252525252525
426 2525252525252525252525252525252525252626262626262727272828282A2A2A2B2B2B2D2D2D
427 2E2E2E2F2F2F2F2F2F2F2F2F
428
429 end
430 %%PageTrailer
431 %%Trailer
432 %%EOF