tizen 2.3 release
[framework/uifw/elementary.git] / doc / img / widget / fileselector_button / preview-01.eps
1 %!PS-Adobe-3.0 EPSF-3.0
2 %%Creator: (ImageMagick)
3 %%Title: (../doc/latex/img/widget/fileselector_button/preview-01.eps)
4 %%CreationDate: (2014-09-11T12:21:52+09:00)
5 %%BoundingBox: -0 -0 69 21
6 %%HiResBoundingBox: 0 0 69 21
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 69 21
267 userdict begin
268 DisplayImage
269 0 0
270 69 21
271 12
272 69 21
273 0
274 0
275 474747464646464646464646464646464646464646464646464646464646464646464646464646
276 464646464646464646464646464646464646464646464646464646464646464646464646464646
277 464646464646464646464646464646464646464646464646464646464646464646464646464646
278 464646464646464646464646464646464646464646464646464646464646464646464646464646
279 464646464646464646464646464646464646464646464646464646464646464646464646464646
280 4646464646464646464747474848483E3E3E3C3C3C3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B
281 3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B
282 3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B
283 3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B
284 3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B
285 3B3B3B3B3B3B3B3B3B3B3B3B3B3B3B3C3C3C3E3E3E2F2F2F4747473A3A3A878787878787878787
286 878787878787878787878787878787878787878787878787878787878787878787878787878787
287 878787878787878787878787878787878787878787878787878787878787878787878787878787
288 878787878787878787878787878787878787878787878787878787878787878786878787878787
289 878787878787878787878787878787878787878787878787878787878787868787878787878787
290 8787878787878787878787878787878787878787878787878787878787873A3A3A2E2E2E454545
291 3535356666655E5F5F5E5F5E5F5E5F5E5E5F5F5F5E5F5E5F5F5F5F5F5F5F5E5F5E5E5F5E5E5E5F
292 5E5F5F5F5F5E5F5E5F5F5F5F5E5E5F5F5F5E5F5E5E5F5F5F5F5F5F5F5E5E5F5F5F5F5F5F5F5F5F
293 5F5F5F5F5E5E5E5F5F5E5E5F5F5F5E5E5F5F5F5F5F5E5F5E5E5E5E5F5F5F5F5F5E5F5E5E5F5E5E
294 5E5F5F5F5F5E5E5F5E5F5F5F5F5F5F5E5E5F5E5E5F5F5F5E5F5F5E5E5E5F5E5F5E5F5F5E5F5E5E
295 5F5E5F5E5E5F5E5F5F5F5F5E5E5F5E5F5E5E5E5F5E5F5E5F5E5F5F5E5F5F5E5F5F5E5E5E5F5F5E
296 4747473535352D2D2D4444443131316465645E5E5D5D5D5E5D5D5D5D5E5E5D5D5E5D5D5D5E5E5E
297 5D5D5D5D5D5D5D5D5D5D5D5E5D5D5D5D5D5D5D5E5E5E5E5D5D5D5D5E5E5D5D5D5D5D5D5D5D5D5D
298 5D5D5D5E5E5D5D5D5E5D5D5E5D5D5D5D5D5D5D5D5D5E5D5E5D5E5D5E5E5D5D5E5D5D5D5D5D5D5D
299 5D5D5E5E5D5D5D5D5D5D5D5D5D5D5E5D5D5D5D5D5D5D5D5D5D5D5D5D5D5E5D5D5D5D5D5D5D5D5E
300 5E5D5D5D5D5D5D5D5D5D5D5D5D5D5E5E5E5D5D5D5D5D5D5D5D5D5D5D5D5D5D5E5E5D5D5D5D5D5D
301 5D5D5D5D5D5D5D5D5D5D5D5D4646463131312C2C2C4343433030306363635C5C5C5C5B5C5C5C5C
302 5C5B5C5C5C5B5C5C5B5B5B5C5B5C5E5B5B5D5A5C5D5B5A5C5B5C5C5C5C5B5C5C5C5C5B5C5B5C5C
303 5C5C5C5B5C5C5C5C5C5C5C5C5B5C5C5C5C5C5B5B5C5C5C5C5C5C5C5C5C5C5C5C5C5C5B5C5C5C5C
304 5B5C5C5C5B5B5B5C5B5C5C5C5B5C5B5C5C5C5C5C5B5C5C5C5C5C5C5C5C5C5C5B5C5C5C5C5C5C5B
305 5C5C5C5C5C5C5C5C5C5B5C5C5C5C5C5C5C5C5C5C5C5C5B5C5B5C5C5C5B5C5B5C5C5C5C5B5C5C5B
306 5C5C5B5C5C5C5C5C5C5C5C5B5C5C5C5C5C5B5C5B5B5C5B5C4545453030302C2C2C434343303030
307 606060595A5959595959595959595959595958595953606D4579AC4B6F934676A7565D63595959
308 595959595959595959646464FFFFFFFFFFFFFFFFFFC7C7C7595959B1B1B1F3F3F3FFFFFFA6A6A6
309 595959595959595959595959FFFFFFFFFFFFF3F3F39B9B9B595959595959595959595959595959
310 595959595959595959595959595959595959595959595959595959595959595959595959595959
311 595959595959595959595959595959595959595959595959595959595959595959595959434343
312 3030302C2C2C4343433030305F5F5F585858575857585758575757575858525F6D3D87D43399FF
313 3496F83397FC5261725758585758575857585758585F5E5FB8B8B82B2B2B2B2B2B3A3A3A787979
314 CCCCCC3B3B3C2B2B2B434243585758575858585858636362C6C6C62B2B2B3C3C3BE6E6E6575857
315 585858585757585857575857585757575758585858BBBCBC585757585857585858BBBCBC585857
316 575758575758575857585858575857585858575857585857585757575858585758575758585858
317 5857575858585758584242413030302C2C2C4343433030305C5D5D555555555555555455535455
318 4F5E6B3C88D33399FF3399FF3399FF3398FD4D647A5455565555555455555555545D5D5DBCBCBC
319 555555555555545555575757BBBBBB5D5D5D5454555555555554545554555555555D5D5DC9C9C9
320 555555696969D5D5D5555555555555BABABA555555555555A4A4A4777677C6C6C6FFFFFFFFFFFF
321 828182C5C6C6FFFFFFFFFFFF828282555555A4A4A4F3F3F3F3F3F3BABABA555455606060D1D1D1
322 F3F3F3FFFFFFBABABA5555545455555455555555554040403030302C2C2C4343433030305B5C5B
323 545354535453535253505A653A86D23399FF3399FF3399FF3399FF3399FF3B87D3505B67535254
324 5453545353535B5B5BFFFFFFFFFFFFFFFFFFAEAEAF505150454544B9B9B8BABABA545454535353
325 5454535453535C5B5BFFFFFFFFFFFFFFFFFF7575765453545F5E5EB0B0B0535453535354989899
326 6F6F6F373738B7B7B7373737484748373737B7B7B7373737474848808180CBCCCB3A3A3A3A3A3A
327 B0B0B09797975C5B5CF1F1F1484848292929CACACA6A69695453535354545453543F3E3F303030
328 2C2C2C4343433030305A5A5A5252525252525152534866833989D93399FF3399FF3399FF3399FF
329 3399FF3989D94967845152535252525252525A5A5AB7B7B72828292828283C3C3C5252524F4F4F
330 393939606060C5C5C55252525252525252525A5A5AC5C5C5282828444444CDCDCD6969695A5A5B
331 AFAFAF525252525252A4A4A46D6D6D525252BBBBBB5A5A5A525252525252BBBBBB5A5A5A525252
332 9C9C9C6969694F4F4F4F4F4F535353B2B2B25A5A5AAAAAAA4C4C4C5252529292926F6F6F525252
333 5252525252523D3D3D3030302C2C2C434343303030575757504F504F504F4F4F4F4F5053436F9B
334 3399FF3399FF3399FF3399FF3399FF426F9C4E50534F4F4F4F504F4F4F50575757BBBBBB4F4F4F
335 4F4F504F4F4F4F4F4F504F50504F4F787777D6D6D6504F4F504F4F4F4F4F585857C8C8C84F4F4F
336 565555BABABA6E6D6D4D4C4CE4E4E45A5A5A676667E4E4E46B6B6B4F4F4FADADAD6363634F4F4F
337 504F4FADADAD6463634F4F4F707070CDCDCD5A5A5A5A5A5AB6B6B6878787585757AEAEAE4F4F4F
338 4F4F509797976B6B6B504F4F504F4F4F4F4F3C3B3B3030302C2C2C4343433030305656554E4D4E
339 4E4E4E4E4E4D4C4E4F426D983399FF3399FF3399FF3399FF3399FF426D984D4E4F4E4E4E4D4E4E
340 4D4E4E575757BABBBB4E4D4E4E4E4D4E4E4E717071FFFFFFFFFFFFD9D9D94949494E4D4E4D4E4E
341 4E4E4E4B4B4BFFFFFFFFFFFFF2F2F2A09FA04646454E4E4E9C9C9CFFFFFFE6E6E6B8B8B86A6B6B
342 4E4E4D868686FFFFFFACACAC4E4D4E868686FFFFFFABACAC434342919191F2F2F2F2F2F2AEAEAE
343 3E3E3E4A4B4BAEAEAE4E4D4D4E4E4D9696966B6B6B4E4E4D4E4E4E4E4E4D3A3A3A3030302C2C2C
344 4343433030305353534B4B4B4B4B4B4B4B4B4A4B4C406A953399FF3399FF3399FF3399FF3399FF
345 406B954A4B4C4B4B4B4B4B4B4B4B4B4848483232324B4B4B4B4B4B4B4B4B434343252525252525
346 2D2D2D4646464B4B4B4B4B4B4B4B4B4B4B4B2525252525252828283737374B4B4B4B4B4B373737
347 2525252A2A2A3232324343434B4B4B3C3C3C2525253737374B4B4B3C3C3C2525253737374B4B4B
348 3939392828282828283434344B4B4B4B4B4B3434344B4B4B4B4B4B3939394343434B4B4B4B4B4B
349 4B4B4B3838383030302C2C2C434343303030525251494A4A4A494A4A4A4A494A49435F7B3984D0
350 3885D23885D23885D23984D0435F7B494A4A49494A4A4A49494A494A494A494A4A494A4A494949
351 4A4A49494A4A49494A494A494A4949494A4A49494A4A494A49494A4A4A494A4A4A4A4A49494A4A
352 49494A4A4A4A4A4A4A494A4A49494A494A494A494A4A494A494A4A49494A4A4949494A4A494949
353 4A4A4A494A4A494A494A494A494A494A494A4A4A4949494A494A4A4A494A4A4A4949494949494A
354 4A4949494A4A4A494A49494A4A49493736373030302C2C2C434343303030505150484848484948
355 48484948494847494B474B50464C51464D51464C51464B5147484A484848494849484849494848
356 484848484848484848494848484848484848484848484849494848484948484848484948484848
357 484848484948484948484848484849484848484848484948484848484849484848484848484949
358 484849484849484849484949484848484848494948484948484848494848484848484948484848
359 4949494949484848484949484848494848484949484848484848483636363030302C2C2C434343
360 3030304D4D4D464546454646464545454646454545464546464545454546454546464645464645
361 464545464546454645464545454545454545454645454546454545454546464545454646454545
362 464645454645454645454646454546464646464645464545464545454545454546454545464645
363 454645454645464546464645454546454545454645454645454645464646464646454645464645
364 454646454546454646464646464645454545464645454546454546454546454546464646454646
365 3333333030302C2C2C4343433030304C4C4C444444444444444445444444444444444444444444
366 444444444444444444444444444444444444444444444444444444444444444444444444444444
367 444444444444444444444444444444444444444444444444444444444444444444444444444444
368 444444444444444444444444444444444444444444444444444444444444444444444444444444
369 444444444444444444444444444444444444444444444444444444444444444444444445444444
370 4444444444444444444444443333333030302C2C2C444444313131494949313131313131313131
371 313131313132313131313232323131323131313231313131313131313131323131313132323232
372 313131313131313131313131313131313131323132323131313131313232313231313131313131
373 323231313131323131313132323131323131313131323131323132313231313131313132323131
374 313231313131313231323231313131313131323131313131313131313131323132313131313131
375 3231313131313131313131313131313132313132323232323231313131312C2C2C454545353535
376 2A2A2A232323202020202020202020202020202020202020202020202020202020202020202020
377 202020202020202020202020202020202020202020202020202020202020202020202020202020
378 202020202020202020202020202020202020202020202020202020202020202020202020202020
379 202020202020202020202020202020202020202020202020202020202020202020202020202020
380 2020202020202020202020202020202020202020202020202020202020202020202020202A2A2A
381 3535352D2D2D2E2E2E2C2C2C272727252525242424242424242424242424242424242424242424
382 242424242424242424242424242424242424242424242424242424242424242424242424242424
383 242424242424242424242424242424242424242424242424242424242424242424242424242424
384 242424242424242424242424242424242424242424242424242424242424242424242424242424
385 242424242424242424242424242424242424242424242424242424242424242424242424242424
386 2424242424242424242727272C2C2C2E2E2E
387
388 end
389 %%PageTrailer
390 %%Trailer
391 %%EOF