Java javax.imageio ImageReadParam fields, constructors, methods, implement or subclass

Example usage for Java javax.imageio ImageReadParam fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.imageio ImageReadParam.

The text is from its open source code.

Field

booleancanSetSourceRenderSize
true if this ImageReadParam allows the source rendering dimensions to be set.

Constructor

ImageReadParam()
Constructs an ImageReadParam .

Method

int[]getDestinationBands()
Returns the set of band indices where data will be placed.
PointgetDestinationOffset()
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.
RectanglegetSourceRegion()
Returns the source region to be used.
intgetSourceXSubsampling()
Returns the number of source columns to advance for each pixel.
intgetSourceYSubsampling()
Returns the number of rows to advance for each pixel.
voidsetDestination(BufferedImage destination)
Supplies a BufferedImage to be used as the destination for decoded pixel data.
voidsetDestinationType(ImageTypeSpecifier destinationType)
voidsetSourceBands(int[] sourceBands)
Sets the indices of the source bands to be used.
voidsetSourceRegion(Rectangle sourceRegion)
Sets the source region of interest.
voidsetSourceRenderSize(Dimension size)
If the image is able to be rendered at an arbitrary size, sets the source width and height to the supplied values.
voidsetSourceSubsampling(int sourceXSubsampling, int sourceYSubsampling, int subsamplingXOffset, int subsamplingYOffset)
Specifies a decimation subsampling to apply on I/O.