Redux » History » Version 12
Jim Pulokas, 08/14/2012 11:37 AM
1 | 3 | Jim Pulokas | h1. redux |
---|---|---|---|
2 | 2 | Jim Pulokas | |
3 | 10 | Jim Pulokas | redux is a package for generating custom views of images |
4 | 1 | Jim Pulokas | |
5 | 3 | Jim Pulokas | !redux_basic_idea.png! |
6 | |||
7 | 12 | Jim Pulokas | h2. Current design |
8 | |||
9 | !redux_more_detail.png! |
||
10 | |||
11 | 10 | Jim Pulokas | h2. Features |
12 | 1 | Jim Pulokas | |
13 | 10 | Jim Pulokas | * python library<pre>import redux.client |
14 | c = redux.client.SimpleClient() |
||
15 | 6 | Neil Voss | j = c.process_kwargs(filename='example.png', oformat='JPEG')</pre> |
16 | 12 | Jim Pulokas | * network daemon that can answer requests for an image and the pipeline of processing to do on it<pre>reduxd</pre> |
17 | * command line client that uses either the network daemon or locally imported python library to do processing<pre>redux --filename=example.png --oformat=JPEG > example.jpg |
||
18 | redux --server_host=localhost --filename=example.png --oformat=JPEG > example.jpg</pre> |
||
19 | * cache: most buggy part |
||
20 | 9 | Anchi Cheng | |
21 | h2. [[Using Redux to serve images on myamiweb]] |