| Package | Description |
|---|---|
| ej.microui.display |
Contains display management.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BufferedImage
A
BufferedImage represents a mutable image backed by a pixel buffer. |
class |
ResourceImage
A
ResourceImage represents an image which may require dynamic allocation in order to be created. |
| Modifier and Type | Method and Description |
|---|---|
static Image |
Image.getImage(java.lang.String path)
Gets an immutable image from a resource.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
Painter.drawImage(GraphicsContext gc,
Image image,
int x,
int y)
Draws the image at the given anchor top-left point.
|
static void |
Painter.drawImage(GraphicsContext gc,
Image image,
int x,
int y,
int alpha)
Draws the image at the given anchor top-left point.
|
static void |
Painter.drawImageRegion(GraphicsContext gc,
Image image,
int xSource,
int ySource,
int width,
int height,
int xDestination,
int yDestination)
Draws a region of the image.
|
static void |
Painter.drawImageRegion(GraphicsContext gc,
Image image,
int xSource,
int ySource,
int width,
int height,
int xDestination,
int yDestination,
int alpha)
Draws a region of an image.
|