Image
Last updated
Last updated
An image is a rectangular image that you can draw or copy onto a surface.
Image objects can not be added directly to the user interface because they are not controllers (that is, they do not extend the Control class).
To display an image in the user interface, you need to use a control that best suits your needs, such as ImageControl, Button, or Animation. If you do not want to use any controls, you can draw the image on the screen using the Graphics object.
It is important to note that some transformation methods return a new instance of the image, while others apply to the current instance. To preserve an image with a single frame, use getFrameInstance (0);
To better understand TotalCross's recommended way to use images in your projects, go to the Colors, Fonts and Images page in the Guideline To Create Apps section.
Do not forget to create a folder called "images" inside /src/main/resources and save the alligator.gif image inside it [images].
See also our quick tutorial video on creating Image Animation sample.
See the Java Docs for more information.
Type
Name
Description
Constructor
Image(int width, int height)
Creates an Image object with the given width and height. The new image has the same color depth and color map of the default drawing surface.
Constructor
Image(byte[] fullDescription)
Creates an Image object from the given byte array, which must specify the whole image, including its headers. Use only JPEG or PNG images on the devices (GIF and BMP are supported on the desktop only).
Constructor
Image(String path)
Attempts to read the contents of the file specified by the given path, creating an Image object from the bytes read. The path given is the path to the image file. The file must be in 2, 16, 256, 24 bpp color compressed (RLE) or uncompressed BMP bitmap format, a PNG file, a GIF file, or a JPEG file. If the image cannot be loaded, an ImageException will be thrown.
Constructor
Image(Stream s)
Attempts to read the contents of the given stream, and create an Image object from the bytes read. Loads a BMP, JPEG, GIF, or PNG image from a stream. Note that GIF and BMP are supported only on the desktop. Note that all the bytes of the given stream will be fetched, even those bytes that may follow the image.
Boolean
isSupported(String filename)
Check if a specific file is supported by the platform at runtime; PNG or JPEG are always supported. GIF and BMP are supported on JavaSE only.
int
getWidth( )
Returns the image width
int
getHeight( )
Returns the image height
Graphics
getGraphics( )
Returns the Graphics object used by this image
void
changeColors(int from, int to)
change all pixels of the same color by another color
void
applyColor(int color)
Applies the given color RGB values to all pixels of this image, preserving the transparent color and alpha channel, if set.
Image
scaledBy(double scaleX, double scaleY)
Returns a scaled instance of this image. The new dimensions are calculated based on this image’s dimensions and the given proportions. The algorithm used is the replicate scale: not good quality, but fast. The given values must be > 0
Image
smoothScaledBy(double scaleX, double scaleY, int backColor)
Returns a scaled instance of this image. The new dimensions are calculated based on this image’s dimensions and the given proportions. The given values must be > 0. The transparent pixels are replaced by backColor, which produces a smooth border.
Image
getRotatedScaledInstance(int scale, int angle, int fillColor)
Returns a rotated and/or scaled version of this image, where the scale parameter indicates the percentage of scaling to be performe, the angle indicates the rotation angle, expressed in trigonometric degrees and FillColor is the fill color. Do not use this method for scaling only, because the scaling methods are faster. If you need a smooth scale and rotate, scale it first with smoothScaledBy() or getSmoothScaledInstance() and rotate it without scaling (or vice-versa).
Image
getTouchedUpInstance(byte brightness, byte contrast)
Retorna uma instância retocada da imagem, onde o parâmetro brightness indica o brilho(que deve ser entre -128 e 127) e o constrast indica o nível de contraste, que também deve ser entre -128(onde não há contraste) e 127(o nível máximo de contraste)
Image
getFadedInstance(int backColor)
Returns a touched-up instance of this image with the specified brightness and contrast.