static int getIntColorWithoutAlpha(BufferedImage img, int x, int y) { ret img.getRGB(x, y) & 0xFFFFFF; } static int getIntColorWithoutAlpha(BufferedImage img, Pt p) { ret getIntColorWithoutAlpha(img, p.x, p.y); }