On my iPhone app I have a UIImage instance. I want to get a derived a UIImage that is the result of the first UIImage where one of its colors (e.g. magenta) is made transparent. How can I do this?
|
|
The above code is tested and i cahnge the green color to red color by using mask Thanks |
|||||||||||||
|
|
OK. Having tried I don't know how many versions of these solutions, I have my own customised version. What I've found is that the solution from @yubenyi works quite well, but if you want to take the output from his changeWhiteColorTransparent() function and pass it back in, it doesn't work. My first step was to change his function to accept a specific colour and tolerance so that the caller could specify a range of colours to make transparent. This worked fine, almost unchanged, but I found that the output was not a valid image for passing through the same code with a second colour range. After a lot of trial and error, I got this working by doing the colour replacement myself. I resisted this because it seemed like too much hard work when there are API's to do this stuff, but they don't always behave the way you want. Specifically, the output from CGImageCreateWithMaskingColors() can't be used as an input into another call to the same function. I haven't been able to work out why, but I think it's something to do with the alpha channel. In any case, my solution is:
|
|||||||||||||
|
|
After use of your functions, I found more simpler way of making transparent background for UIImage :) For example, you have PNG image with black background and you want make this background transparent on screen. You can try this:
You have got image with transparent background. That's all :) |
|||||||||
|
|
this function can work!
|
|||||
|
|
|
I've never done anything like this myself, but it looks like |
|||
|
|
|
This is a tweak of yubenyi's code that will work with multiple passes. It strips the alpha channel before processing by converting the image to an uncompressed jpeg. Also added some comments on how the color range selection works.
|
||||

