tizen 2.3 release
[framework/uifw/elementary.git] / doc / img / widget / slider / preview-00.eps
1 %!PS-Adobe-3.0 EPSF-3.0
2 %%Creator: (ImageMagick)
3 %%Title: (../doc/latex/img/widget/slider/preview-00.eps)
4 %%CreationDate: (2014-09-11T12:24:00+09:00)
5 %%BoundingBox: -0 -0 46 21
6 %%HiResBoundingBox: 0 0 46 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 46 21
267 userdict begin
268 DisplayImage
269 0 0
270 46 21
271 12
272 46 21
273 0
274 0
275 474747474747474747474747474747474747474747464646464646464646464646464646464646
276 474747474747474747474747474747474747474747474747474747474747474747474747474747
277 474747474747474747474747474747474747474747474747474747474747474747474747474747
278 4747474747474747474747474747474747474747474949494040404040404040403F3F3F3F3F3F
279 3E3E3E3D3D3D3D3D3D3D3D3D3D3D3D3D3D3D3E3E3E3E3E3E3F3F3F3F3F3F404040404040404040
280 404040404040404040404040404040404040404040404040404040404040404040404040404040
281 404040404040404040404040404040404040404040404040404040404040404040404040404040
282 3030304949494040404040403F3F3F3E3E3E3D3D3D666766ACACABD8D9D7F6F6F6EEEEEDC6C6C4
283 8E8F8B5657553D3D3D3E3E3E3F3F3F404040404040404040404040404040404040404040404040
284 404040404040404040404040404040404040404040404040404040404040404040404040404040
285 4040404040404040404040404040404040404040403030304949494040403F3F3F3E3E3E3B3B3B
286 A5A5A4D5D6D3B1B2AE8F908A676A62575A50585A51767971AEAFAB82847F3B3B3B3E3E3E3F3F3F
287 404040404040404040404040404040404040404040404040404040404040404040404040404040
288 404040404040404040404040404040404040404040404040404040404040404040404040404040
289 4040403030304949493F3F3F3E3E3E3B3B3BB7B7B3CFCFCD9EA09C8E908A81847D65685F50534A
290 3A3E3242453A53564D8E908A8C8E8A3B3B3B3E3E3E3F3F3F404040404040404040404040404040
291 404040404040404040404040404040404040404040404040404040404040404040404040404040
292 4040404040404040404040404040404040404040404040403030304848483F3F3F3C3C3CA8A7A4
293 D5D4CEB8B8B0B4B4B2989A9484857F64665D43463C33372B4E5047606259696B64979A937E807C
294 3C3C3C3F3F3F3F3F3F404040404040404040404040404040404040404040404040404040404040
295 404040404040404040404040404040404040404040404040404040404040404040404040404040
296 4040404040403030304848483D3D3D626262ECEBE9DBDAD7CFCFC7C1C2BBA2A3A0888A84686A62
297 41453A474A405C5F576E706982857D858781A6A9A44F4F4E3D3D3D3F3F3F404040404040404040
298 404040404040404040404040404040404040404040404040404040404040404040404040404040
299 4040404040404040404040404040404040404040404040404040403030304747473B3B3B8E8E8F
300 D5D5D6DBDBDBE2E2E0D3D3CDBBBCB6989A945D605843463C64665E7C7E7881837E8E908A8E908A
301 A0A19C787A763B3B3B3E3E3E404040404040404040404040404040404040404040404040404040
302 404040404040404040404040404040404040404040404040404040404040404040404040404040
303 404040404040404040303030474747393939A09C9FB2AFB2B4B2B5C0BFC0C8C7C8D2D1D0C3C4BF
304 74776F5F625884868092948F9698939A9C98A2A4A0A8A9A59999962A2A2A2E2E2E2F2F2F303030
305 303030303030303030313031313131323232323232333333333333343434343434353535353535
306 3636363636363737373737373838383838383838383A3A3A3E3E3E404040303030464646373737
307 989C969EA19A9DA09A9D9F9991938E8D8F8E9293918B8A88B4B5B1BCBCB7B3B4ADB7B8B4B7B7B2
308 BBBAB6BDBDB9B9B9B60D0D0D0F0F0F0F0F0F101010101010101010101010101010101010101010
309 101010101010101010101010101010101010101010101010101010101010101010101010101010
310 1414143333334444444040403030304545453636367A7E76787C766E716C6668655B5C59454442
311 454243595757A7A8A5CECDCCD5D5D0D2D1CCCAC9C2C4C4BBC3C2B9BABAB10D0D0D0F0F0F0F0F0F
312 101010101010101010101010101010101010101010101010101010101010101010101010101010
313 101010101010101010101010101010101010101010101010151515525252404040303030454545
314 3636364F4F4D5251504E4E4B4C4D494B48473C3739423C413937365D605A9D9E9BC0BEC0DDDDDD
315 E0E0DFDCDCD8D7D7D2B3B2AE0D0D0D0F0F0F0F0F0F101010101010101010101010101010101010
316 101010101010101010101010101010101010101010101010101010101010101010101010101010
317 1010101616163E3E3E5757574040403030304646463737373C3C3A4B4B46494846423F3F423D3F
318 4E484B4742463A3737424340797D76A7A6A5B3B1B4CBCBCCE4E4E3E5E5E49C9C9A5252525C5C5C
319 5F5F5F616161616161626262626363636363646464646464646564656565666666666666666666
320 676767686768686868696969696969696A6A6A6A6A6B6A6A6B6B6B606160464646404040303030
321 4747473939393333334342403F3B3C3F393B403A3D504A4F474244433E3F4B4A486264608E938C
322 A3A1A1B1AFB1BCBCBEDCDCDC5454543939393E3E3E3F3F3F404040404040404040404040404040
323 404040404040404040404040404040404040404040404040404040404040404040404040404040
324 4040404040404040404040404040404040403030304747473B3B3B3333333331333F393C3C3639
325 4A44484D474C3A33373D393A4545424D4D4C737670979C94ABAAAAB2B0B27473753333333B3B3B
326 3E3E3E404040404040404040404040404040404040404040404040404040404040404040404040
327 404040404040404040404040404040404040404040404040404040404040404040404040404040
328 3030304848483D3D3D383838303030342F32453F43524C514641443C35383D373A4544414C4D49
329 636562888D839EA39C817F803030303838383D3D3D3F3F3F404040404040404040404040404040
330 404040404040404040404040404040404040404040404040404040404040404040404040404040
331 4040404040404040404040404040404040404040403030304949493F3F3F3C3C3C3636362F2F2F
332 3B383A554F53454042403B3D423E404A49484E4E4B5657566F726C62665F2F2F2F3636363C3C3C
333 3F3F3F3F3F3F404040404040404040404040404040404040404040404040404040404040404040
334 404040404040404040404040404040404040404040404040404040404040404040404040404040
335 4040403030304949493F3F3F3E3E3E3B3B3B363636303030312F303431333934373D383A444240
336 4546423D3C3A3434333030303636363B3B3B3E3E3E3F3F3F404040404040404040404040404040
337 404040404040404040404040404040404040404040404040404040404040404040404040404040
338 4040404040404040404040404040404040404040404040403030304949494040403F3F3F3E3E3E
339 3C3C3C3838383333333030302D2D2D2C2C2C2C2C2C2D2D2D3030303333333838383C3C3C3E3E3E
340 3F3F3F404040404040404040404040404040404040404040404040404040404040404040404040
341 404040404040404040404040404040404040404040404040404040404040404040404040404040
342 4040404040403030304949494040404040403F3F3F3F3F3F3D3D3D3B3B3B393939373737363636
343 3636363737373939393B3B3B3D3D3D3F3F3F3F3F3F404040404040404040404040404040404040
344 404040404040404040404040404040404040404040404040404040404040404040404040404040
345 404040404040404040404040404040404040404040404040404040303030303030303030303030
346 3030302F2F2F2F2F2F2F2F2F2E2E2E2E2E2E2D2D2D2D2D2D2E2E2E2E2E2E2F2F2F2F2F2F2F2F2F
347 303030303030303030303030303030303030303030303030303030303030303030303030303030
348 303030303030303030303030303030303030303030303030303030303030303030303030303030
349 303030303030303030303030
350
351 end
352 %%PageTrailer
353 %%Trailer
354 %%EOF