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