Example usage for Java javax.imageio ImageReadParam fields, constructors, methods, implement or subclass
The text is from its open source code.
boolean | canSetSourceRenderSize true if this ImageReadParam allows the source rendering dimensions to be set. |
ImageReadParam() Constructs an ImageReadParam . |
int[] | getDestinationBands() Returns the set of band indices where data will be placed. |
Point | getDestinationOffset() Returns the offset in the destination image at which pixels are to be placed. |
int[] | getSourceBands() Returns the set of source bands to be used. |
Rectangle | getSourceRegion() Returns the source region to be used. |
int | getSourceXSubsampling() Returns the number of source columns to advance for each pixel. |
int | getSourceYSubsampling() Returns the number of rows to advance for each pixel. |
void | setDestination(BufferedImage destination) Supplies a BufferedImage to be used as the destination for decoded pixel data. |
void | setDestinationType(ImageTypeSpecifier destinationType) |
void | setSourceBands(int[] sourceBands) Sets the indices of the source bands to be used. |
void | setSourceRegion(Rectangle sourceRegion) Sets the source region of interest. |
void | setSourceRenderSize(Dimension size) If the image is able to be rendered at an arbitrary size, sets the source width and height to the supplied values. |
void | setSourceSubsampling(int sourceXSubsampling, int sourceYSubsampling, int subsamplingXOffset, int subsamplingYOffset) Specifies a decimation subsampling to apply on I/O. |