How remove transparent image pixel

Dear all,I would want to parse pixels image in order to determine pixel tranparency.In other hand i would want to create a new image where all transparent pixels are removed.Shall i use pixel gribber for parsing image? How to do ? Thanks for your helpfull..
[285 byte] By [superman@a] at [2007-10-2 17:27:05]
# 1

U need something like filtering Image with all transparent pixels..

so do something like ..

first: figure out all transparent pixels.. http://javaalmanac.com/egs/java.awt.image/GetGifColors.html

second: filter all that pixels.. http://javaalmanac.com/egs/java.awt.image/FilterRgb.html

Since transparent pixel does not have RGB.. they are more related to alpha value.. The alpha component of a pixel refers to the transparency or opaqueness of the pixel. check this.. http://www.webbasedprogramming.com/Tricks-of-the-Java-Programming-Gurus/f12-2.gif

Try to read.. http://www.webbasedprogramming.com/Tricks-of-the-Java-Programming-Gurus/ch12.htm

and u will figure out.. urself how to do it.. !!

may be this helps..

gervinia at 2007-7-13 18:43:35 > top of Java-index,Desktop,Core GUI APIs...