I have some images in html that have a white background. I need to remove the white background. I was thinking that I could make all white pixels transparent, but i dont know how to do that. I would only like to use html/javascript.
|
feedback
|
|
Here is how to do it..
and to use it set the
http://jsfiddle.net/gaby/UuCys/3/ For this code to work, the image must be coming from the same domain as the code (for security reasons). | ||||
|
feedback
|
|
Well the image data you get back from a canvas object with "getImageData" is just RGBA pixel information - that is, red, green, blue, and alpha transparency. Thus you could get the image data and just iterate through, looking at four pixels at a time. When you see a white one, you can just zero it out (along with the alpha value). Now the thing is, you won't be satisfied with the results because there'll still be a "halo" around the non-white elements. The original image is (probably) slightly blurred, effectively anti-aliased, at the edges of colored areas. Thus there are pixels along the edges that are a little lighter than the main image, and you'll see those still after removing all the pure white ones. To really clean up the edges is pretty tricky, depending on exactly what kind of source images you've got. I don't think it's cutting edge image processing or anything, but it's not trivial. | |||
|
feedback
|