static BufferedImage bufferedImage(int[] pixels, int w, int h) { ret intArrayToBufferedImage(pixels, w, h); } static BufferedImage bufferedImage(int[] pixels, WidthAndHeight size) { ret bufferedImage(pixels, size.getWidth(), size.getHeight()); } 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); } static BufferedImage bufferedImage(WidthAndHeight size, Color color) { ret newBufferedImage(size.w(), size.h(), color); } static BufferedImage bufferedImage(Color color, WidthAndHeight size) { ret bufferedImage(size, color); }