On this page
Class ComponentSampleModel
- Direct Known Subclasses:
BandedSampleModel,PixelInterleavedSampleModel
public class ComponentSampleModel extends SampleModel
DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, or DataBuffer.TYPE_INT, respectively), data for which each sample is a signed integral number which can be stored in 16 bits (using DataBuffer.TYPE_SHORT), or data for which each sample is a signed float or double quantity (using DataBuffer.TYPE_FLOAT or DataBuffer.TYPE_DOUBLE, respectively). All samples of a given ComponentSampleModel are stored with the same precision. All strides and offsets must be non-negative. This class supports TYPE_BYTE, TYPE_USHORT, TYPE_SHORT, TYPE_INT, TYPE_FLOAT, TYPE_DOUBLE,
- See Also:
Field Summary
| Modifier and Type | Field | Description |
|---|---|---|
protected int[] |
bandOffsets |
Offsets for all bands in data array elements.
|
protected int[] |
bankIndices |
Index for each bank storing a band of image data.
|
protected int |
numBands |
The number of bands in this ComponentSampleModel.
|
protected int |
numBanks |
The number of banks in this ComponentSampleModel.
|
protected int |
pixelStride |
Pixel stride (in data array elements) of the region of image data described by this ComponentSampleModel.
|
protected int |
scanlineStride |
Line stride (in data array elements) of the region of image data described by this ComponentSampleModel.
|
Fields declared in class java.awt.image.SampleModel
dataType, height, width
Constructor Summary
| Constructor | Description |
|---|---|
ComponentSampleModel |
Constructs a ComponentSampleModel with the specified parameters.
|
ComponentSampleModel |
Constructs a ComponentSampleModel with the specified parameters.
|
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
SampleModel |
createCompatibleSampleModel |
Creates a new ComponentSampleModel with the specified width and height.
|
DataBuffer |
createDataBuffer() |
Creates a DataBuffer that corresponds to this ComponentSampleModel.
|
SampleModel |
createSubsetSampleModel |
Creates a new ComponentSampleModel with a subset of the bands of this ComponentSampleModel.
|
final int[] |
getBandOffsets() |
Returns the band offset for all bands.
|
final int[] |
getBankIndices() |
Returns the bank indices for all bands.
|
Object |
getDataElements |
Returns data for a single pixel in a primitive array of type TransferType.
|
final int |
getNumDataElements() |
Returns the number of data elements needed to transfer a pixel with the getDataElements(int, int, Object, DataBuffer) and setDataElements(int, int, Object, DataBuffer) methods.
|
int |
getOffset |
Gets the offset for the first band of pixel (x,y).
|
int |
getOffset |
Gets the offset for band b of pixel (x,y).
|
int[] |
getPixel |
Returns all samples for the specified pixel in an int array, one sample per array element.
|
int[] |
getPixels |
Returns all samples for the specified rectangle of pixels in an int array, one sample per array element.
|
final int |
getPixelStride() |
Returns the pixel stride of this ComponentSampleModel.
|
int |
getSample |
Returns as int the sample in a specified band for the pixel located at (x,y).
|
double |
getSampleDouble |
Returns the sample in a specified band for a pixel located at (x,y) as a double.
|
float |
getSampleFloat |
Returns the sample in a specified band for the pixel located at (x,y) as a float.
|
int[] |
getSamples |
Returns the samples in a specified band for the specified rectangle of pixels in an int array, one sample per data array element.
|
final int[] |
getSampleSize() |
Returns the number of bits per sample for all bands.
|
final int |
getSampleSize |
Returns the number of bits per sample for the specified band.
|
final int |
getScanlineStride() |
Returns the scanline stride of this ComponentSampleModel.
|
void |
setDataElements |
Sets the data for a single pixel in the specified DataBuffer from a primitive array of type TransferType.
|
void |
setPixel |
Sets a pixel in the DataBuffer using an int array of samples for input.
|
void |
setPixels |
Sets all samples for a rectangle of pixels from an int array containing one sample per array element.
|
void |
setSample |
Sets a sample in the specified band for the pixel located at (x,y) in the DataBuffer using a double for input.
|
void |
setSample |
Sets a sample in the specified band for the pixel located at (x,y) in the DataBuffer using a float for input.
|
void |
setSample |
Sets a sample in the specified band for the pixel located at (x,y) in the DataBuffer using an int for input.
|
void |
setSamples |
Sets the samples in the specified band for the specified rectangle of pixels from an int array containing one sample per data array element.
|
Methods declared in class java.awt.image.SampleModel
getDataElements, getDataType, getHeight, getNumBands, getPixel, getPixel, getPixels, getPixels, getSamples, getSamples, getTransferType, getWidth, setDataElements, setPixel, setPixel, setPixels, setPixels, setSamples, setSamples
Field Details
bandOffsets
protected int[] bandOffsets
bankIndices
protected int[] bankIndices
numBands
protected int numBands
ComponentSampleModel.
numBanks
protected int numBanks
ComponentSampleModel.
scanlineStride
protected int scanlineStride
pixelStride
protected int pixelStride
Constructor Details
ComponentSampleModel
public ComponentSampleModel(int dataType, int w, int h, int pixelStride, int scanlineStride, int[] bandOffsets)
- Parameters:
dataType- the data type for storing samplesw- the width (in pixels) of the region of image data describedh- the height (in pixels) of the region of image data describedpixelStride- the pixel stride of the region of image data describedscanlineStride- the line stride of the region of image data describedbandOffsets- the offsets of all bands- Throws:
IllegalArgumentException- ifwandhare not both greater than 0IllegalArgumentException- if the product ofwandhis greater thanInteger.MAX_VALUEIllegalArgumentException- ifpixelStrideis less than 0IllegalArgumentException- ifscanlineStrideis less than 0NullPointerException- ifbandOffsetsisnullIllegalArgumentException- ifbandOffsets.lengthis 0IllegalArgumentException- ifdataTypeis not one of the supported data types for this sample model.
ComponentSampleModel
public ComponentSampleModel(int dataType, int w, int h, int pixelStride, int scanlineStride, int[] bankIndices, int[] bandOffsets)
- Parameters:
dataType- the data type for storing samplesw- the width (in pixels) of the region of image data describedh- the height (in pixels) of the region of image data describedpixelStride- the pixel stride of the region of image data describedscanlineStride- The line stride of the region of image data describedbankIndices- the bank indices of all bandsbandOffsets- the band offsets of all bands- Throws:
IllegalArgumentException- ifwandhare not both greater than 0IllegalArgumentException- if the product ofwandhis greater thanInteger.MAX_VALUEIllegalArgumentException- ifpixelStrideis less than 0IllegalArgumentException- ifscanlineStrideis less than 0NullPointerException- ifbankIndicesisnullNullPointerException- ifbandOffsetsisnullIllegalArgumentException- ifbandOffsets.lengthis 0IllegalArgumentException- if the length ofbankIndicesdoes not equal the length ofbandOffsetsIllegalArgumentException- if any of the bank indices ofbandIndicesis less than 0IllegalArgumentException- ifdataTypeis not one of the supported data types for this sample model
Method Details
createCompatibleSampleModel
public SampleModel createCompatibleSampleModel(int w, int h)
ComponentSampleModel with the specified width and height. The new SampleModel will have the same number of bands, storage data type, interleaving scheme, and pixel stride as this SampleModel.
- Specified by:
createCompatibleSampleModelin classSampleModel- Parameters:
w- the width of the resultingSampleModelh- the height of the resultingSampleModel- Returns:
-
a new
ComponentSampleModelwith the specified size - Throws:
IllegalArgumentException- ifworhis not greater than 0
createSubsetSampleModel
public SampleModel createSubsetSampleModel(int[] bands)
- Specified by:
createSubsetSampleModelin classSampleModel- Parameters:
bands- a subset of bands from thisComponentSampleModel- Returns:
-
a
ComponentSampleModelcreated with a subset of bands from thisComponentSampleModel.
createDataBuffer
public DataBuffer createDataBuffer()
DataBuffer that corresponds to this ComponentSampleModel. The DataBuffer object's data type, number of banks, and size are be consistent with this ComponentSampleModel.
- Specified by:
createDataBufferin classSampleModel- Returns:
-
a
DataBufferwhose data type, number of banks and size are consistent with thisComponentSampleModel.
getOffset
public int getOffset(int x, int y)
DataBuffer data with a ComponentSampleModel csm as
data.getElem(csm.getOffset(x, y));
- Parameters:
x- the X location of the pixely- the Y location of the pixel- Returns:
- the offset for the first band of the specified pixel.
getOffset
public int getOffset(int x, int y, int b)
b can be retrieved from a DataBuffer data with a ComponentSampleModel csm as
data.getElem(csm.getOffset(x, y, b));
- Parameters:
x- the X location of the specified pixely- the Y location of the specified pixelb- the specified band- Returns:
- the offset for the specified band of the specified pixel.
getSampleSize
public final int[] getSampleSize()
- Specified by:
getSampleSizein classSampleModel- Returns:
- an array containing the number of bits per sample for all bands, where each element in the array represents a band.
getSampleSize
public final int getSampleSize(int band)
- Specified by:
getSampleSizein classSampleModel- Parameters:
band- the specified band- Returns:
- the number of bits per sample for the specified band.
getBankIndices
public final int[] getBankIndices()
- Returns:
- the bank indices for all bands.
getBandOffsets
public final int[] getBandOffsets()
- Returns:
- the band offsets for all bands.
getScanlineStride
public final int getScanlineStride()
- Returns:
-
the scanline stride of this
ComponentSampleModel.
getPixelStride
public final int getPixelStride()
- Returns:
-
the pixel stride of this
ComponentSampleModel.
getNumDataElements
public final int getNumDataElements()
getDataElements(int, int, Object, DataBuffer) and setDataElements(int, int, Object, DataBuffer) methods. For a ComponentSampleModel, this is identical to the number of bands.
- Specified by:
getNumDataElementsin classSampleModel- Returns:
-
the number of data elements needed to transfer a pixel with the
getDataElementsandsetDataElementsmethods. - See Also:
getDataElements
public Object getDataElements(int x, int y, Object obj, DataBuffer data)
TransferType. For a ComponentSampleModel, this is the same as the data type, and samples are returned one per array element. Generally, obj should be passed in as null, so that the Object is created automatically and is the right primitive data type.
The following code illustrates transferring data for one pixel from DataBuffer db1, whose storage layout is described by ComponentSampleModel csm1, to DataBuffer db2, whose storage layout is described by ComponentSampleModel csm2. The transfer is usually more efficient than using getPixel and setPixel.
ComponentSampleModel csm1, csm2;
DataBufferInt db1, db2;
csm2.setDataElements(x, y,
csm1.getDataElements(x, y, null, db1), db2);
Using getDataElements and setDataElements to transfer between two DataBuffer/SampleModel pairs is legitimate if the SampleModel objects have the same number of bands, corresponding bands have the same number of bits per sample, and the TransferTypes are the same.
If obj is not null, it should be a primitive array of type TransferType. Otherwise, a ClassCastException is thrown. An ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds, or if obj is not null and is not large enough to hold the pixel data.
- Specified by:
getDataElementsin classSampleModel- Parameters:
x- the X coordinate of the pixel locationy- the Y coordinate of the pixel locationobj- if non-null, a primitive array in which to return the pixel datadata- theDataBuffercontaining the image data- Returns:
- the data of the specified pixel
- Throws:
NullPointerException- if data is null.ArrayIndexOutOfBoundsException- if the coordinates are not in bounds, or if obj is too small to hold the output.- See Also:
getPixel
public int[] getPixel(int x, int y, int[] iArray, DataBuffer data)
ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds.
- Overrides:
getPixelin classSampleModel- Parameters:
x- the X coordinate of the pixel locationy- the Y coordinate of the pixel locationiArray- If non-null, returns the samples in this arraydata- The DataBuffer containing the image data- Returns:
- the samples of the specified pixel.
- Throws:
NullPointerException- if data is null.ArrayIndexOutOfBoundsException- if the coordinates are not in bounds, or if iArray is too small to hold the output.- See Also:
getPixels
public int[] getPixels(int x, int y, int w, int h, int[] iArray, DataBuffer data)
ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds.
- Overrides:
getPixelsin classSampleModel- Parameters:
x- The X coordinate of the upper left pixel locationy- The Y coordinate of the upper left pixel locationw- The width of the pixel rectangleh- The height of the pixel rectangleiArray- If non-null, returns the samples in this arraydata- The DataBuffer containing the image data- Returns:
- the samples of the pixels within the specified region.
- See Also:
getSample
public int getSample(int x, int y, int b, DataBuffer data)
ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds.
- Specified by:
getSamplein classSampleModel- Parameters:
x- the X coordinate of the pixel locationy- the Y coordinate of the pixel locationb- the band to returndata- theDataBuffercontaining the image data- Returns:
- the sample in a specified band for the specified pixel
- See Also:
getSampleFloat
public float getSampleFloat(int x, int y, int b, DataBuffer data)
ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds.
- Overrides:
getSampleFloatin classSampleModel- Parameters:
x- The X coordinate of the pixel locationy- The Y coordinate of the pixel locationb- The band to returndata- The DataBuffer containing the image data- Returns:
- a float value representing the sample in the specified band for the specified pixel.
getSampleDouble
public double getSampleDouble(int x, int y, int b, DataBuffer data)
ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds.
- Overrides:
getSampleDoublein classSampleModel- Parameters:
x- The X coordinate of the pixel locationy- The Y coordinate of the pixel locationb- The band to returndata- The DataBuffer containing the image data- Returns:
- a double value representing the sample in the specified band for the specified pixel.
getSamples
public int[] getSamples(int x, int y, int w, int h, int b, int[] iArray, DataBuffer data)
ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds.
- Overrides:
getSamplesin classSampleModel- Parameters:
x- The X coordinate of the upper left pixel locationy- The Y coordinate of the upper left pixel locationw- the width of the pixel rectangleh- the height of the pixel rectangleb- the band to returniArray- if non-null, returns the samples in this arraydata- theDataBuffercontaining the image data- Returns:
- the samples in the specified band of the specified pixel
- See Also:
setDataElements
public void setDataElements(int x, int y, Object obj, DataBuffer data)
DataBuffer from a primitive array of type TransferType. For a ComponentSampleModel, this is the same as the data type, and samples are transferred one per array element.
The following code illustrates transferring data for one pixel from DataBuffer db1, whose storage layout is described by ComponentSampleModel csm1, to DataBuffer db2, whose storage layout is described by ComponentSampleModel csm2. The transfer is usually more efficient than using getPixel and setPixel.
ComponentSampleModel csm1, csm2;
DataBufferInt db1, db2;
csm2.setDataElements(x, y, csm1.getDataElements(x, y, null, db1),
db2);
Using getDataElements and setDataElements to transfer between two DataBuffer/SampleModel pairs is legitimate if the SampleModel objects have the same number of bands, corresponding bands have the same number of bits per sample, and the TransferTypes are the same.
A ClassCastException is thrown if obj is not a primitive array of type TransferType. An ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds, or if obj is not large enough to hold the pixel data.
- Specified by:
setDataElementsin classSampleModel- Parameters:
x- the X coordinate of the pixel locationy- the Y coordinate of the pixel locationobj- a primitive array containing pixel datadata- the DataBuffer containing the image data- See Also:
setPixel
public void setPixel(int x, int y, int[] iArray, DataBuffer data)
DataBuffer using an int array of samples for input. An ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds.
- Overrides:
setPixelin classSampleModel- Parameters:
x- The X coordinate of the pixel locationy- The Y coordinate of the pixel locationiArray- The input samples in an int arraydata- The DataBuffer containing the image data- See Also:
setPixels
public void setPixels(int x, int y, int w, int h, int[] iArray, DataBuffer data)
ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds.
- Overrides:
setPixelsin classSampleModel- Parameters:
x- The X coordinate of the upper left pixel locationy- The Y coordinate of the upper left pixel locationw- The width of the pixel rectangleh- The height of the pixel rectangleiArray- The input samples in an int arraydata- The DataBuffer containing the image data- See Also:
setSample
public void setSample(int x, int y, int b, int s, DataBuffer data)
DataBuffer using an int for input. An ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds.
- Specified by:
setSamplein classSampleModel- Parameters:
x- The X coordinate of the pixel locationy- The Y coordinate of the pixel locationb- the band to sets- the input sample as an intdata- the DataBuffer containing the image data- See Also:
setSample
public void setSample(int x, int y, int b, float s, DataBuffer data)
DataBuffer using a float for input. An ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds.
- Overrides:
setSamplein classSampleModel- Parameters:
x- The X coordinate of the pixel locationy- The Y coordinate of the pixel locationb- The band to sets- The input sample as a floatdata- The DataBuffer containing the image data- See Also:
setSample
public void setSample(int x, int y, int b, double s, DataBuffer data)
DataBuffer using a double for input. An ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds.
- Overrides:
setSamplein classSampleModel- Parameters:
x- The X coordinate of the pixel locationy- The Y coordinate of the pixel locationb- The band to sets- The input sample as a doubledata- The DataBuffer containing the image data- See Also:
setSamples
public void setSamples(int x, int y, int w, int h, int b, int[] iArray, DataBuffer data)
ArrayIndexOutOfBoundsException might be thrown if the coordinates are not in bounds.
- Overrides:
setSamplesin classSampleModel- Parameters:
x- The X coordinate of the upper left pixel locationy- The Y coordinate of the upper left pixel locationw- The width of the pixel rectangleh- The height of the pixel rectangleb- The band to setiArray- The input samples in an int arraydata- The DataBuffer containing the image data- See Also:
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/java/awt/image/ComponentSampleModel.html