| Package | Description |
|---|---|
| com.sun.javafx.tk | |
| com.sun.prism | |
| javafx.scene.image |
Provides the set of classes for loading and displaying images.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PlatformImage.setPixels(int dstx,
int dsty,
int w,
int h,
PixelReader reader,
int srcx,
int srcy) |
| Modifier and Type | Method and Description |
|---|---|
void |
Image.setPixels(int dstx,
int dsty,
int w,
int h,
PixelReader reader,
int srcx,
int srcy) |
abstract void |
Image.Accessor.setPixels(int dstx,
int dsty,
int w,
int h,
PixelReader reader,
int srcx,
int srcy) |
void |
Image.ScaledAccessor.setPixels(int dstx,
int dsty,
int w,
int h,
PixelReader reader,
int srcx,
int srcy) |
void |
Image.ByteAccess.setPixels(int dstx,
int dsty,
int w,
int h,
PixelReader reader,
int srcx,
int srcy) |
void |
Image.IntAccess.setPixels(int dstx,
int dsty,
int w,
int h,
PixelReader reader,
int srcx,
int srcy) |
| Modifier and Type | Field and Description |
|---|---|
private PixelReader |
Image.reader |
| Modifier and Type | Method and Description |
|---|---|
PixelReader |
Image.getPixelReader()
This method returns a
PixelReader that provides access to
read the pixels of the image, if the image is readable. |
| Modifier and Type | Method and Description |
|---|---|
void |
PixelWriter.setPixels(int dstx,
int dsty,
int w,
int h,
PixelReader reader,
int srcx,
int srcy)
Stores pixel data retrieved from a
PixelReader instance
into a rectangular region of the surface. |
| Constructor and Description |
|---|
WritableImage(PixelReader reader,
int width,
int height)
Construct an image of the specified dimensions, initialized from
the indicated
PixelReader. |
WritableImage(PixelReader reader,
int x,
int y,
int width,
int height)
Construct an image of the specified dimensions, initialized from
the indicated region of the
PixelReader. |