views:

42

answers:

1

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?

A: 

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