| javax.microedition.lcdui.AbstractImageData
All known Subclasses: javax.microedition.lcdui.ImageData,
AbstractImageData | interface AbstractImageData (Code) | | Image data that is based on platform decoder and storage.
|
Method Summary | |
int | getHeight() Gets the height of the image in pixels. | int | getWidth() Gets the width of the image in pixels. | boolean | isMutable() Check if this image is mutable. |
getHeight | int getHeight()(Code) | | Gets the height of the image in pixels. The value returned
must reflect the actual height of the image when rendered.
height of the image |
getWidth | int getWidth()(Code) | | Gets the width of the image in pixels. The value returned
must reflect the actual width of the image when rendered.
width of the image |
isMutable | boolean isMutable()(Code) | | Check if this image is mutable. Mutable images can be modified by
rendering to them through a Graphics object
obtained from the
getGraphics() method of this object.
true if the image is mutable,false otherwise |
|
|