org.encog.util
Class ImageSize
java.lang.Object
org.encog.util.ImageSize
- All Implemented Interfaces:
- ImageObserver
public class ImageSize
- extends Object
- implements ImageObserver
Simple class to determine the size of an image.
- Author:
- jheaton
Constructor Summary |
ImageSize(Image image)
Determine the size of an image. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ImageSize
public ImageSize(Image image)
- Determine the size of an image.
- Parameters:
image
- The image to be sized.
getHeight
public int getHeight()
- Returns:
- the height
getWidth
public int getWidth()
- Returns:
- the width
imageUpdate
public boolean imageUpdate(Image img,
int infoflags,
int x,
int y,
int width,
int height)
- The image has been updated.
- Specified by:
imageUpdate
in interface ImageObserver
- Parameters:
img
- The image.infoflags
- Which data has been loaded.x
- Not used.y
- Not used.width
- The width of the image.height
- The height of the image.
- Returns:
- True if more data is still needed.
Copyright © 2014. All Rights Reserved.