List of utility methods to do Image Width Get
int | getWidth(final Image image) Returns the width of the specified image. return image == null ? 0 : image.getWidth(null);
|
int | getWidth(Image pImage) Gets the width of an Image. int width = pImage.getWidth(NULL_COMPONENT); if (width < 0) { if (!waitForImage(pImage)) { return -1; width = pImage.getWidth(NULL_COMPONENT); return width; ... |
int | getWidth(java.awt.Image image) get Width waitForImage(image);
return image.getWidth(s_imageObserver);
|