static BufferedImage bufferedImage(int[] pixels, int w, int h) { ret intArrayToBufferedImage(pixels, w, h); } static BufferedImage bufferedImage(int w, int h, int[] pixels) { ret intArrayToBufferedImage(pixels, w, h); } // undefined color, seems to be all black in practice static BufferedImage bufferedImage(int w, int h) { ret newBufferedImage(w, h); } static BufferedImage bufferedImage(int w, int h, RGB rgb) { ret newBufferedImage(w, h, rgb); } static BufferedImage bufferedImage(int w, int h default w, Color color) { ret newBufferedImage(w, h, color); } static BufferedImage bufferedImage(Pt p, Color color) { ret newBufferedImage(p, color); }