List of utility methods to do BufferedImage Width Get
int | getWidth(File file) get Width BufferedImage bufImg = getBufferedImage(file); if (bufImg != null) { return bufImg.getWidth(); return 0; |
int | getWidth(BufferedImage image) get Width return image.getWidth();
|