List of utility methods to do Image Height Get
int | getHeight(final File image) Return image height in pixels. BufferedImage bufferedImage = ImageIO.read(image);
return bufferedImage.getHeight();
|
int | getHeight(final Image image) Returns the height of the specified image. return image == null ? 0 : image.getHeight(null);
|
int | getHeight(Image pImage) Gets the height of an Image. int height = pImage.getHeight(NULL_COMPONENT); if (height < 0) { if (!waitForImage(pImage)) { return -1; height = pImage.getHeight(NULL_COMPONENT); return height; ... |
int | getHeight(java.awt.Image image) get Height waitForImage(image);
return image.getHeight(s_imageObserver);
|