What are people using/doing to create photo filters or photoshop like effects on iPhone OS? Things like B&W, sepia, cross-processing, 'vintage' etc. I see ImageMagick can probably do this with a lot of futzing around, any other options?
Asked
Active
Viewed 1,482 times
3 Answers
7
Brad Larson's GPUImage framework will be your best Option.You can get the framework from here.

Balan Prabhu
- 557
- 1
- 7
- 21
-
1Thanks Balan, I'll look into this, this may be the new answer :) – Shizam May 04 '12 at 17:06
-
@Shizam Read the documentation about the Framework in that GitHub Link.It would be very helpful to you:) – Balan Prabhu May 05 '12 at 10:42
4
Here is another option.

Quaso
- 373
- 1
- 6
- 18
-
Thats a pretty nice looking drop in solution as long as you're ok w/supporting 5.x only (which is really the majority case at this point anyway). – Shizam Apr 12 '12 at 19:06
1
ImageMagick was not the way, its to slow. The solution is to access the raw byte data and modify the RGB values pixel by pixel using, among other things, 5x5 matrix transforms. Here is a good place to start:

Shizam
- 9,627
- 8
- 51
- 82