views:

527

answers:

4

Is there any way to do simple image manipulation like adjusting brightness, contrast, exposure, etc. using Cocoa? Something like NSImage?

+5  A: 

You want Core Image, I think.

Carl Norum
+1  A: 

Have you had a look at Core Image?

Abizern
A: 

I'd check out the CoreImage FunHouse example. It pretty much shows you how to use most of what CoreImage can do.

Dave DeLong
+4  A: 

If you want to present UI to allow the user to make these kinds of modifications, look at ImageKit.

Ken
This is exactly what I was looking for. Thanks
macatomy