- java.lang.Object
-
- javafx.scene.image.Image
-
- javafx.scene.image.WritableImage
-
public class WritableImage extends Image
TheWritableImage
class represents a custom graphical image that is constructed from pixels supplied by the application, and possibly fromPixelReader
objects from any number of sources, including images read from a file or URL.- Since:
- JavaFX 2.2
-
-
Constructor Summary
Constructors Constructor Description WritableImage(int width, int height)
Construct an empty image of the specified dimensions.WritableImage(PixelReader reader, int width, int height)
Construct an image of the specified dimensions, initialized from the indicatedPixelReader
.WritableImage(PixelReader reader, int x, int y, int width, int height)
Construct an image of the specified dimensions, initialized from the indicated region of thePixelReader
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PixelWriter
getPixelWriter()
This method returns aPixelWriter
that provides access to write the pixels of the image.-
Methods inherited from class javafx.scene.image.Image
cancel, errorProperty, exceptionProperty, getException, getHeight, getPixelReader, getProgress, getRequestedHeight, getRequestedWidth, getUrl, getWidth, heightProperty, isBackgroundLoading, isError, isPreserveRatio, isSmooth, progressProperty, widthProperty
-
-
-
-
Constructor Detail
-
WritableImage
public WritableImage(int width, int height)
Construct an empty image of the specified dimensions. The image will initially be filled with transparent pixels. Images constructed this way will always be readable and writable so the corresponding getPixelReader() and getPixelWriter() will always return valid objects. The dimensions must both be positive numbers(> 0)
.- Parameters:
width
- the desired width of the writable imageheight
- the desired height of the desired image- Throws:
IllegalArgumentException
- if either dimension is negative or zero.
-
WritableImage
public WritableImage(PixelReader reader, int width, int height)
Construct an image of the specified dimensions, initialized from the indicatedPixelReader
. The image will initially be filled with data returned from thePixelReader
. If thePixelReader
accesses a surface that does not contain the necessary number of pixel rows and columns then anArrayIndexOutOfBoundsException
will be thrown. Images constructed this way will always be readable and writable so the corresponding getPixelReader() and getPixelWriter() will always return valid objects. The dimensions must both be positive numbers(> 0)
.- Parameters:
reader
- thePixelReader
to construct fromwidth
- the desired width of the writable image and the width of the region to be read from thereader
height
- the desired height of the desired image and the width of the region to be read from thereader
- Throws:
ArrayIndexOutOfBoundsException
- if thereader
does not access a surface of at least the requested dimensionsIllegalArgumentException
- if either dimension is negative or zero.
-
WritableImage
public WritableImage(PixelReader reader, int x, int y, int width, int height)
Construct an image of the specified dimensions, initialized from the indicated region of thePixelReader
. The image will initially be filled with data returned from thePixelReader
for the specified region. If thePixelReader
accesses a surface that does not contain the necessary number of pixel rows and columns then anArrayIndexOutOfBoundsException
will be thrown. Images constructed this way will always be readable and writable so the corresponding getPixelReader() and getPixelWriter() will always return valid objects. The dimensions must both be positive numbers(> 0)
.- Parameters:
reader
- thePixelReader
to construct fromx
- the X coordinate of the upper left corner of the region to read from thereader
y
- the Y coordinate of the upper left corner of the region to read from thereader
width
- the desired width of the writable image and the width of the region to be read from thereader
height
- the desired height of the desired image and the width of the region to be read from thereader
- Throws:
ArrayIndexOutOfBoundsException
- if thereader
does not access a surface containing at least the indicated regionIllegalArgumentException
- if either dimension is negative or zero.
-
-
Method Detail
-
getPixelWriter
public final PixelWriter getPixelWriter()
This method returns aPixelWriter
that provides access to write the pixels of the image.- Returns:
- the
PixelWriter
for writing pixels to the image
-
-