tizen 2.3 release
[framework/uifw/elementary.git] / doc / img / widget / spinner / preview-00.eps
1 %!PS-Adobe-3.0 EPSF-3.0
2 %%Creator: (ImageMagick)
3 %%Title: (../doc/latex/img/widget/spinner/preview-00.eps)
4 %%CreationDate: (2014-09-11T12:24:07+09:00)
5 %%BoundingBox: -0 -0 37 15
6 %%HiResBoundingBox: 0 0 37 15
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 37 15
267 userdict begin
268 DisplayImage
269 0 0
270 37 15
271 12
272 37 15
273 0
274 0
275 474747474747474747474747474747474747474747474747474747474747474747474747474747
276 474747474747474747474747474747474747474747474747474747474747474747474747474747
277 474747474747474747474747474747474747474747474747474747474747474747494949303030
278 303030303030303030303030303030303030303030303030303030303030303030303030303030
279 303030303030303030303030303030303030303030303030303030303030303030303030303030
280 3030303030303030303030303030303030303030303030303030303A3A3A3030302D2D2D2A2A2A
281 282828272727262626262626252525252525252525242424242424232323232323232323232323
282 222222222222222222222222232323232323232323232323242424242424252525252525252525
283 2626262626262727272828282A2A2A2D2D2D2626263F3F3F3535353232323030302F2F2F2D2D2D
284 2C2C2C2B2B2B2A2A2A2A2A2A292929292929292929282828272727272727272727262626545454
285 9292929292926464642727272727272828282929292929292A2A2A2A2A2A2A2A2A2B2B2B2B2B2B
286 2D2D2D2F2F2F3030303232322929294343433A3A3A383838373737353535343434333333313131
287 2D2D2DC5C5C52C2C2C2E2E2E2F2F2F2E2E2E2D2D2D2D2D2D2D2D2D3E3E3E959595212121212121
288 8B8B8B4848482D2D2D2E2E2E2F2F2F3030303030302F2F2F2D2D2DCACACA2E2E2E323232353535
289 3737373838382C2C2C4747473D3D3D3C3C3C3B3B3B3B3B3B3A3A3A373737323232E1E1E1D3D3D3
290 DCDCDC3131313535353535353434343434343434346464646464643131313131314E4E4E797979
291 343434353535363636363636363636323232E1E1E1D8D8D8E5E5E53333333939393B3B3B3C3C3C
292 2E2E2E4848483F3F3F3E3E3E3E3E3E3E3E3E3B3B3B363636F3F3F3E6E6E6D9D9D9202020333333
293 3939393A3A3A3A3A3A3A3A3A3A3A3A6C6C6C7777773939393A3A3A5656568383833A3A3A3A3A3A
294 3B3B3B3B3B3B3A3A3A333333212121DCDCDCE8E8E8F6F6F63737373C3C3C3E3E3E2F2F2F494949
295 3F3F3F3F3F3F3F3F3F3E3E3E393939FCFCFCEFEFEFE3E3E31515152929293838383D3D3D3E3E3E
296 3D3D3D3D3D3D3D3D3D6666669898983D3D3D3D3D3D8383837070703D3D3D3E3E3E3E3E3E3E3E3E
297 3D3D3D3838382A2A2A151515E4E4E4F0F0F0FDFDFD3939393E3E3E303030494949404040404040
298 3F3F3F3E3E3E363636212121E5E5E5F1F1F1FDFDFD3232323C3C3C3E3E3E3F3F3F3F3F3F3F3F3F
299 3F3F3F363636E0E0E05757574B4B4BE0E0E04141413F3F3F3F3F3F3F3F3F3F3F3F3E3E3E3C3C3C
300 323232FDFDFDF2F2F2E6E6E62121213636363E3E3E3030304848483F3F3F3F3F3F3F3F3F3E3E3E
301 3939392B2B2B161616E1E1E1ECECECF8F8F83838383D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D
302 5A5A5ADBDBDBE8E8E87676763A3A3A3D3D3D3D3D3D3E3E3E3E3E3E3D3D3D383838F9F9F9EDEDED
303 E2E2E21616162A2A2A3939393E3E3E2F2F2F4848483F3F3F3E3E3E3E3E3E3D3D3D3B3B3B363636
304 272727151515D6D6D62020203232323838383A3A3A3A3A3A3A3A3A3A3A3A3A3A3A313131202020
305 1E1E1E2E2E2E3A3A3A3A3A3A3A3A3A3A3A3A3B3B3B393939333333202020D9D9D9151515282828
306 3636363C3C3C3E3E3E2F2F2F4747473E3E3E3D3D3D3C3C3C3B3B3B3A3A3A373737323232262626
307 1E1E1E262626303030343434343434343434343434343434343434333333333333343434343434
308 3434343434343434343535353636363535353232322727271F1F1F2727273333333939393C3C3C
309 3D3D3D2F2F2F4646463C3C3C3B3B3B3A3A3A3838383737373535353232322E2E2E2B2B2B2C2C2C
310 2E2E2E2F2F2F2E2E2E2D2D2D2D2D2D2D2D2D2D2D2D2C2C2C2C2C2C2D2D2D2D2D2D2D2D2D2D2D2D
311 2E2E2E2F2F2F3030303131313030302E2E2E2D2D2D3030303535353838383A3A3A3B3B3B2E2E2E
312 4949496F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6E6E6E6E6E6E6E6E6E6F6F6F6F6F6F6F6F6F
313 6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F6F
314 6F6F6F6F6F6F6F6F6F6E6E6E6E6E6E6E6E6E6F6F6F6F6F6F6F6F6F6F6F6F303030303030303030
315 303030303030303030303030303030303030303030303030303030303030303030303030303030
316 303030303030303030303030303030303030303030303030303030303030303030303030303030
317 303030303030303030303030303030303030303030303030303030
318
319 end
320 %%PageTrailer
321 %%Trailer
322 %%EOF