3

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?

Shizam
  • 9,627
  • 8
  • 51
  • 82

3 Answers3

7

Brad Larson's GPUImage framework will be your best Option.You can get the framework from here.

Balan Prabhu
  • 557
  • 1
  • 7
  • 21
4

Here is another option.

http://www.binpress.com/app/photo-effects-sdk-for-ios/801

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:

http://www.iphonedevsdk.com/forum/iphone-sdk-development/11158-share-your-image-proccessing-filter-code.html

Shizam
  • 9,627
  • 8
  • 51
  • 82