BradLarson / GPUImage

An open source iOS framework for GPU-based image and video processing
http://www.sunsetlakesoftware.com/2012/02/12/introducing-gpuimage-framework
BSD 3-Clause "New" or "Revised" License
20.23k stars 4.61k forks source link

How to give a "Yellow-ish" color to an image? #897

Closed YogevSitton-zz closed 11 years ago

YogevSitton-zz commented 11 years ago

I have an image which I want to give a "Yellow-ish" shade to.

How can that be achieved?

BradLarson commented 11 years ago

There are a number of ways of doing this, from manipulating the RGB channels using a GPUImageRGBFilter, applying a color matrix to it using a GPUImageColorMatrixFilter, adjusting the hue using a GPUImageHueFilter, making a lookup table using GPUImageLookupFilter, or adjusting the white balance using GPUImageWhiteBalanceFilter. As you can see, there are many ways to skin that cat.