Uses of Class
javax.microedition.lcdui.Image

Packages that use Image
com.siemens.mp.color_game   
com.siemens.mp.game Siemens Game API offers several classes that support Siemens-specific handset functionalities, which are not related to data transfer or storage.  
com.siemens.mp.lcdui Siemens LCDUI API provides an improved implementation of the javax.microedition.lcdui.Image class. 
com.siemens.mp.ui Siemens User Interface API provides the base class for com.siemens.mp.lcdui.Image
javax.microedition.lcdui The UI API provides a set of features for implementation of user interfaces for MIDP applications.  
 

Uses of Image in com.siemens.mp.color_game
 

Methods in com.siemens.mp.color_game that return Image
protected  Image Layer.getLayerImage()
          Returns the image of the layer.
 

Methods in com.siemens.mp.color_game with parameters of type Image
protected  void Layer.setLayerImage(Image image)
          Sets the image of the layer.
 boolean Sprite.collidesWith(Image image, int x, int y, boolean pixelLevel)
          Checks for a collision between this Sprite and the image specified located at (x, y).
 void Sprite.setImage(Image image, int frameWidth, int frameHeight)
          Change the image used for the Sprite.
 void TiledLayer.setStaticTileSet(Image image, int tileWidth, int tileHeight)
          Change the static tile set.
 

Constructors in com.siemens.mp.color_game with parameters of type Image
Layer(Image image)
          Creates a new Layer with the specified image.
Sprite(Image image)
          Creates a new non-animated Sprite using the provided mutable Image.
Sprite(Image image, int frameWidth, int frameHeight)
          Creates a new animated Sprite using frames contained in the provided mutable Image.
TiledLayer(int columns, int rows, Image image, int tileWidth, int tileHeight)
          Creates a new TiledLayer.
 

Uses of Image in com.siemens.mp.game
 

Methods in com.siemens.mp.game that return Image
 Image ExtendedImage.getImage()
          Returns the standard Image of ExtendedImage object.
 

Methods in com.siemens.mp.game with parameters of type Image
 void GraphicObjectManager.paint(Image image, int x, int y)
          Draws all objects in the collection on the specified offscreen image.
 

Constructors in com.siemens.mp.game with parameters of type Image
ExtendedImage(Image image)
          Creates ExtendedImage object from an already existing standard Image.
Sprite(Image pixels, Image mask, int numFrames)
          Creates a sprite from previously created images.
TiledBackground(Image tilePixels, Image tileMask, byte[] map, int widthInTiles, int heightInTiles)
          Creates a tiled background using tiles from an Image object.
 

Uses of Image in com.siemens.mp.lcdui
 

Methods in com.siemens.mp.lcdui that return Image
static Image Image.createImageFromFile(String filename, boolean ScaleToFullScreen)
          Create an image from a PNG/JPG/GIF/BMP file.
static Image Image.createImageFromFile(String filename, int ScaleToWidth, int ScaleToHeight)
          Create an image from a PNG/JPG/GIF/BMP file.
 

Methods in com.siemens.mp.lcdui with parameters of type Image
static void Image.writeBmpToFile(Image image, String filename)
          write an image to a BMP picture file
static int Image.getPixelColor(Image image, int x, int y)
          Gets the current pixel color.
static void Image.setPixelColor(Image image, int x, int y, int color)
          Sets the color of a pixel.
 

Uses of Image in com.siemens.mp.ui
 

Methods in com.siemens.mp.ui that return Image
static Image Image.createImageWithScaling(String name)
          Creates an immutable image from decoded image data obtained from the named resource.
static Image Image.createImageWithoutScaling(String name)
          Creates an immutable image from decoded image data obtained from the named resource.
static Image Image.createImageFromBitmap(byte[] imageData, int imageWidth, int imageHeight)
          Create a new immutable image from a b/w Siemens bitmap stored in imageData This method is Siemens specific.
static Image Image.createRGBImage(byte[] imageData, int imageWidth, int imageHeight, int BitmapType)
          Creates a new image from uncompressed color data.
static Image Image.createTransparentImageFromBitmap(byte[] bytes, int width, int height)
           Creates a new immutable b/w image with bpp=2.
 

Methods in com.siemens.mp.ui with parameters of type Image
static void Image.mirrorImageHorizontally(Image image)
          Mirrors an Image at its horizontal axis.
static void Image.mirrorImageVertically(Image image)
          Mirrors an Image at its vertical axis.
protected static void Image.setNativeImage(Image img, Image simg)
          Registers the siemens image inside the lcdui image
static Image Image.getNativeImage(Image img)
           
 

Uses of Image in javax.microedition.lcdui
 

Methods in javax.microedition.lcdui that return Image
 Image Alert.getImage()
          Gets the Image used in the Alert.
 Image Choice.getImage(int elementNum)
          Gets the Image part of the element referenced by elementNum.
 Image ChoiceGroup.getImage(int index)
           
static Image Image.createImage(int width, int height)
           Creates a new, mutable image for off-screen drawing.
static Image Image.createImage(Image image)
           Creates an immutable image from a source image.
static Image Image.createImage(String name)
          Creates an immutable image from decoded image data obtained from the named resource.
static Image Image.createImage(byte[] imageData, int imageOffset, int imageLength)
          Creates an immutable image which is decoded from the data stored in the specified byte array at the specified offset and length.
 Image ImageItem.getImage()
          Gets the image contained within the ImageItem, or null if there is no contained image.
 Image List.getImage(int index)
          Implementation of getImage of interface Choice.
static Image Image.createImage(int width, int height)
           Creates a new, mutable image for off-screen drawing.
static Image Image.createImage(Image image)
           Creates an immutable image from a source image.
static Image Image.createImage(String name)
          Creates an immutable image from decoded image data obtained from the named resource.
static Image Image.createImage(byte[] imageData, int imageOffset, int imageLength)
          Creates an immutable image which is decoded from the data stored in the specified byte array at the specified offset and length.
 Image Alert.getImage()
          Gets the Image used in the Alert.
 Image ImageItem.getImage()
          Gets the image contained within the ImageItem, or null if there is no contained image.
 Image ChoiceGroup.getImage(int index)
           
 Image List.getImage(int index)
          Implementation of getImage of interface Choice.
 Image Choice.getImage(int elementNum)
          Gets the Image part of the element referenced by elementNum.
 

Methods in javax.microedition.lcdui with parameters of type Image
 void Alert.setImage(Image img)
           Sets the Image used in the Alert.
 int Choice.append(String stringElement, Image imageElement)
          Appends an element to the Choice.
 void Choice.insert(int elementNum, String stringElement, Image imageElement)
          Inserts an element into the Choice just before to the element specified.
 void Choice.set(int elementNum, String stringElement, Image imageElement)
          Sets the element referenced by elementNum to the specified element, replacing the previous contents of the element.
 int ChoiceGroup.append(String stringElement, Image imageElement)
           
 void ChoiceGroup.insert(int index, String stringElement, Image imageElement)
           
 void ChoiceGroup.set(int index, String stringElement, Image imageElement)
           
 int Form.append(Image image)
           Adds an item consisting of one Image to the form.
 void Graphics.drawImage(Image img, int x, int y, int anchor)
          Draws the specified image by using the anchor point.
static Image Image.createImage(Image image)
           Creates an immutable image from a source image.
 void ImageItem.setImage(Image img)
          Sets the image object contained within the ImageItem.
 int List.append(String stringElement, Image imageElement)
          Implementation of appendElement of interface Choice.
 void List.insert(int index, String stringElement, Image imageElement)
          Implementation of insertElement of interface Choice.
 void List.set(int index, String stringElement, Image imageElement)
          Implementation of setElement of interface Choice.
static Image Image.createImage(Image image)
           Creates an immutable image from a source image.
 void Graphics.drawImage(Image img, int x, int y, int anchor)
          Draws the specified image by using the anchor point.
 void Alert.setImage(Image img)
           Sets the Image used in the Alert.
 int Form.append(Image image)
           Adds an item consisting of one Image to the form.
 void ImageItem.setImage(Image img)
          Sets the image object contained within the ImageItem.
 int ChoiceGroup.append(String stringElement, Image imageElement)
           
 void ChoiceGroup.insert(int index, String stringElement, Image imageElement)
           
 void ChoiceGroup.set(int index, String stringElement, Image imageElement)
           
 int List.append(String stringElement, Image imageElement)
          Implementation of appendElement of interface Choice.
 void List.insert(int index, String stringElement, Image imageElement)
          Implementation of insertElement of interface Choice.
 void List.set(int index, String stringElement, Image imageElement)
          Implementation of setElement of interface Choice.
 int Choice.append(String stringElement, Image imageElement)
          Appends an element to the Choice.
 void Choice.insert(int elementNum, String stringElement, Image imageElement)
          Inserts an element into the Choice just before to the element specified.
 void Choice.set(int elementNum, String stringElement, Image imageElement)
          Sets the element referenced by elementNum to the specified element, replacing the previous contents of the element.
 

Constructors in javax.microedition.lcdui with parameters of type Image
Alert(String title, String alertText, Image alertImage, AlertType alertType)
          Constructs a new Alert object with the given title, content string and image, and alert type.
ChoiceGroup(String label, int choiceType, String[] stringElements, Image[] imageElements)
          Creates a new ChoiceGroup, specifying its title, the type of the ChoiceGroup, and an array of Strings and Images to be used as its initial contents.
ImageItem(String label, Image img, int layout, String altText)
          Creates a new ImageItem with the given label, image, layout directive, and alternate text string.
List(String title, int listType, String[] stringElements, Image[] imageElements)
          Creates a new List, specifying its title, the type of the List, and an array of Strings and Images to be used as its initial contents.
Alert(String title, String alertText, Image alertImage, AlertType alertType)
          Constructs a new Alert object with the given title, content string and image, and alert type.
ImageItem(String label, Image img, int layout, String altText)
          Creates a new ImageItem with the given label, image, layout directive, and alternate text string.
ChoiceGroup(String label, int choiceType, String[] stringElements, Image[] imageElements)
          Creates a new ChoiceGroup, specifying its title, the type of the ChoiceGroup, and an array of Strings and Images to be used as its initial contents.
List(String title, int listType, String[] stringElements, Image[] imageElements)
          Creates a new List, specifying its title, the type of the List, and an array of Strings and Images to be used as its initial contents.
 



Generated on 2003-10-17For further information and updates, please visit Siemens mobile Developer Portal