-1

How do I add effect (e.g. lomo) to a photo on iOS?

To make it simple, I wanna try to make an iPhone app which is similar to those photography apps, and I want a tutorial to start with.

Cœur
  • 37,241
  • 25
  • 195
  • 267
xcoder
  • 1,336
  • 2
  • 17
  • 44
  • 3
    If you're planning on writing an app that does image processing, wouldn't it be smart to first learn something *about* image processing? – Caleb Jul 19 '11 at 06:17

1 Answers1

0

As coreImage framework is not present in iphone (atleast upto iOS 4.0), you will have to do image filtering by hand..You have to iterate through each pixel in an image and work on it..This thread discussed about various image filtering effects in iphone and is very useful..These guys say they are successful in porting imageMagick to iOS but I never tried that..Also I asked a question about implementing polaroid filter in iOS, though it didnt get a good answer, the question itself might be helpful..

Community
  • 1
  • 1
Krishnabhadra
  • 34,169
  • 30
  • 118
  • 167
  • Well, [Core Image](https://developer.apple.com/documentation/coreimage?language=objc) was added on iOS 5.0. – Cœur Dec 10 '19 at 18:02