Here you can find the source of getWidth(BufferedImage image)
public static int getWidth(BufferedImage image)
//package com.java2s; import java.awt.image.BufferedImage; public class Main { public static int getWidth(BufferedImage image) { return image.getWidth(); }/*from w ww. j a v a 2s.c o m*/ }