Java BufferedImage how to know if a pixel is transparent

给你一囗甜甜゛ 提交于 2019-12-05 03:24:40
chubbsondubs
BufferedImage img = ....

public boolean isTransparent( int x, int y ) {
  int pixel = img.getRGB(x,y);
  if( (pixel>>24) == 0x00 ) {
      return true;
  }
  return false;
}

Of course img has to be in the correct format TYPE_4BYTE_ABGR or some format that supports alpha channels else if will always be opaque (ie 0xff).

the correct shift to get alpha value in an int is with >>> due to sign bit.

example: int alpha1 = (pixel1 & 0xff000000) >>> 24;

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!