tipsywacky
tipsywacky

Reputation: 3464

iOS: how to make an image brighter using imagePicker?

I am making an app that take an photo from the iPad. We want to be able to adjust the contrast and brightness because the image taken seems kinda dim. We thought about Overlay, but it looks like it can't make the image brighter but darker. Any suggestions on how to make it? Thanks in advance.

Upvotes: 0

Views: 1324

Answers (1)

touti
touti

Reputation: 1164

you can use the category UIImage+Brightness.h provided with UIImageAdjust
the category add to uiimage a very simple methode

- (UIImage*) imageWithBrightness:(CGFloat)brightnessFactor;

Upvotes: 3

Related Questions