static void rgbFillRect(RGBImage img, int x1, int y1, int w, int h, Color color) { rgbFill(img, x1, y1, w, h, colorToInt(color)); } static void rgbFillRect(RGBImage img, int x1, int y1, int w, int h, int color) { rgbFill(img, x1, y1, w, h, color); } static void rgbFillRect(BufferedImage img, int x1, int y1, int w, int h, Color color) { fillRect(img, x1, y1, w, h, color); }