Uses of Interface
javafx.scene.image.PixelReader
Package
Description
Provides the set of classes for loading and displaying images.
-
Uses of PixelReader in javafx.scene.image
Modifier and TypeMethodDescriptionfinal PixelReader
Image.getPixelReader()
This method returns aPixelReader
that provides access to read the pixels of the image, if the image is readable.Modifier and TypeMethodDescriptionvoid
PixelWriter.setPixels
(int dstx, int dsty, int w, int h, PixelReader reader, int srcx, int srcy) Stores pixel data retrieved from aPixelReader
instance into a rectangular region of the surface.ModifierConstructorDescriptionWritableImage
(PixelReader reader, int width, int height) Constructs an image of the specified dimensions, initialized from the indicatedPixelReader
.WritableImage
(PixelReader reader, int x, int y, int width, int height) Constructs an image of the specified dimensions, initialized from the indicated region of thePixelReader
.