I have an UIImage and want to shift it's saturation about +10%. Are there standard methods or functions that can be used for this?
|
Starting with a View-based Application Template, create a new subclass of UIView like so:
Now in your view controller's viewDidLoad method, put the view on screen and set it's saturation like this:
Change the saturation like this:
Obviously if you want to use it outside of a single method, you should make dv an ivar of the view controller. Hope this helps. |
|||||||||||
|
|
Nothing quite that straightforward. The easiest solution is probably to make an in-memory CGContext with a known pixel format, draw the image into that context, then read/modify the pixels in the known-format buffer. I don't think CG supports a color space with a separate saturation channel, so you'll have to either convert from RGB to HSV or HSL, or do the calculations directly in the RGB space. One way to do the calculation directly in RGB might be something like this:
This will move the channels that are away from the mean about 10% further away. This is almost like increasing the saturation, though it'll give hue shifts for some colors. |
||||
|
|
|
Here is an implementation of Bessey's hack (put this code in a UIImage category). It ain't fast and it definitely shifts hues, but it sort of works.
Anyone have any ideas on how to improve this without doing a full HSV conversion? Or better yet, a true implementation for:
|
|||
|
|
|
Check out the saturation filter in this source code - https://github.com/esilverberg/ios-image-filters It works well for me |
|||
|
|
