Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.scene.image |
Provides the set of classes for loading and displaying images.
|
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 . |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to