alvaromb
alvaromb

Reputation: 4856

Enable iOS 7 camera effects in UIImagePickerController

Is it possible to enable the default iOS 7 camera effects when using UIImagePickerController? I know that it's possible to control the flash and the image quality, but I cannot find if it's possible to add the effects when capturing an image.

Upvotes: 2

Views: 1397

Answers (1)

Greg
Greg

Reputation: 33650

No, UIImagePickerController does not offer any of the filters that you see in the iOS 7 Camera app. You would need to build those using Core Image's CIFilters, or something like GPUImage.

Upvotes: 3

Related Questions