static Color getColor(BufferedImage img, int x, int y) { ret colorFromRGBA(img.getRGB(x, y)); } static Color getColor(BufferedImage img, Pt p) { ret colorFromRGBA(img.getRGB(p.x, p.y)); }