|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object![]()
![]()
![]()
java.awt.image.SampleModel
![]()
![]()
![]()
java.awt.image.MultiPixelPackedSampleModel
public class MultiPixelPackedSampleModel

The MultiPixelPackedSampleModel class represents
one-banded images and can pack multiple one-sample
pixels into one data element. Pixels are not allowed to span data elements.
The data type can be DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT,
or DataBuffer.TYPE_INT. Each pixel must be a power of 2 number of bits
and a power of 2 number of pixels must fit exactly in one data element.
Pixel bit stride is equal to the number of bits per pixel. Scanline
stride is in data elements and the last several data elements might be
padded with unused pixels. Data bit offset is the offset in bits from
the beginning of the DataBuffer
to the first pixel and must be
a multiple of pixel bit stride.
The following code illustrates extracting the bits for pixel
x, y from DataBuffer data
and storing the pixel data in data elements of type
dataType:
int dataElementSize = DataBuffer.getDataTypeSize(dataType);
int bitnum = dataBitOffset + x*pixelBitStride;
int element = data.getElem(y*scanlineStride + bitnum/dataElementSize);
int shift = dataElementSize - (bitnum & (dataElementSize-1))
- pixelBitStride;
int pixel = (element >> shift) & ((1 << pixelBitStride) - 1);
| Field Summary |
|---|
Fields inherited from class java.awt.image.SampleModel ![]() |
|---|
dataType |
| Constructor Summary | |
|---|---|
MultiPixelPackedSampleModel
Constructs a MultiPixelPackedSampleModel with the
specified data type, width, height and number of bits per pixel. |
|
MultiPixelPackedSampleModel
Constructs a MultiPixelPackedSampleModel with
specified data type, width, height, number of bits per pixel,
scanline stride and data bit offset. |
|
| Method Summary | |
|---|---|
SampleModel |
createCompatibleSampleModel
Creates a new MultiPixelPackedSampleModel with the
specified width and height. |
DataBuffer |
createDataBuffer
Creates a DataBuffer that corresponds to this
MultiPixelPackedSampleModel. |
SampleModel |
createSubsetSampleModel
Creates a new MultiPixelPackedSampleModel with a
subset of the bands of this
MultiPixelPackedSampleModel. |
boolean |
equals
Indicates whether some other object is "equal to" this one. |
int |
getBitOffset
Returns the offset, in bits, into the data element in which it is stored for the xth pixel of a scanline. |
int |
getDataBitOffset
Returns the data bit offset in bits. |
Object |
getDataElements
Returns data for a single pixel in a primitive array of type TransferType. |
int |
getNumDataElements
Returns the number of data elements needed to transfer one pixel via the getDataElements(int, int, java.lang.Object, java.awt.image.DataBuffer) and setDataElements(int, int, java.lang.Object, java.awt.image.DataBuffer)
methods. |
int |
getOffset
Returns the offset of pixel (x, y) in data array elements. |
int[] |
getPixel
Returns the specified single band pixel in the first element of an int array. |
int |
getPixelBitStride
Returns the pixel bit stride in bits. |
int |
getSample
Returns as int the sample in a specified band for the
pixel located at (x, y). |
int[] |
getSampleSize
Returns the number of bits per sample for all bands. |
int |
getSampleSize
Returns the number of bits per sample for the specified band. |
int |
getScanlineStride
Returns the scanline stride. |
int |
getTransferType
Returns the TransferType used to transfer pixels by way of the getDataElements and setDataElements
methods. |
int |
hashCode
Returns a hash code value for the object. |
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 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. |
Methods inherited from class java.awt.image.SampleModel ![]() |
|---|
getDataElements |
Methods inherited from class java.lang.Object ![]() |
|---|
clone |
| Constructor Detail |
|---|

public MultiPixelPackedSampleModel(int dataType,
int w,
int h,
int numberOfBits)
MultiPixelPackedSampleModel with the
specified data type, width, height and number of bits per pixel.
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 describednumberOfBits - the number of bits per pixel
IllegalArgumentException

- if dataType is not
either DataBuffer.TYPE_BYTE,
DataBuffer.TYPE_USHORT, or
DataBuffer.TYPE_INT

public MultiPixelPackedSampleModel(int dataType,
int w,
int h,
int numberOfBits,
int scanlineStride,
int dataBitOffset)
MultiPixelPackedSampleModel with
specified data type, width, height, number of bits per pixel,
scanline stride and data bit offset.
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 describednumberOfBits - the number of bits per pixelscanlineStride - the line stride of the image datadataBitOffset - the data bit offset for the region of image
data described
RasterFormatException

- if the number of bits per pixel
is not a power of 2 or if a power of 2 number of
pixels do not fit in one data element.
IllegalArgumentException

- if w or
h is not greater than 0
IllegalArgumentException

- if dataType is not
either DataBuffer.TYPE_BYTE,
DataBuffer.TYPE_USHORT, or
DataBuffer.TYPE_INT| Method Detail |
|---|

public SampleModel![]()
![]()
createCompatibleSampleModel(int w, int h)
MultiPixelPackedSampleModel with the
specified width and height. The new
MultiPixelPackedSampleModel has the
same storage data type and number of bits per pixel as this
MultiPixelPackedSampleModel.
createCompatibleSampleModel

in class SampleModel

w - the specified widthh - the specified height
SampleModel
with the specified width and height
and with the same storage data type and number of bits per pixel
as this MultiPixelPackedSampleModel.
IllegalArgumentException

- if w or
h is not greater than 0

public DataBuffer![]()
![]()
createDataBuffer()
DataBuffer that corresponds to this
MultiPixelPackedSampleModel. The
DataBuffer object's data type and size
is consistent with this MultiPixelPackedSampleModel.
The DataBuffer has a single bank.
createDataBuffer

in class SampleModel

DataBuffer with the same data type and
size as this MultiPixelPackedSampleModel.

public int getNumDataElements()
getDataElements(int, int, java.lang.Object, java.awt.image.DataBuffer)
and setDataElements(int, int, java.lang.Object, java.awt.image.DataBuffer)
methods. For a MultiPixelPackedSampleModel, this is
one.
getNumDataElements

in class SampleModel

SampleModel.getDataElements(int, int, Object, DataBuffer)
,
SampleModel.getDataElements(int, int, int, int, Object, DataBuffer)
,
SampleModel.setDataElements(int, int, Object, DataBuffer)
,
SampleModel.setDataElements(int, int, int, int, Object, DataBuffer)
,
SampleModel.getTransferType()


public int[] getSampleSize()
getSampleSize

in class SampleModel


public int getSampleSize(int band)
getSampleSize

in class SampleModel

band - the specified band

public int getOffset(int x,
int y)
x, y - the specified pixel

public int getBitOffset(int x)
xth pixel of a scanline.
This offset is the same for all scanlines.
x - the specified pixel

public int getScanlineStride()
MultiPixelPackedSampleModel.

public int getPixelBitStride()
pixelBitStride of this
MultiPixelPackedSampleModel.

public int getDataBitOffset()
dataBitOffset of this
MultiPixelPackedSampleModel.

public int getTransferType()
getDataElements and setDataElements
methods. The TransferType might or might not be the same as the
storage DataType. The TransferType is one of
DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT,
or DataBuffer.TYPE_INT.
getTransferType

in class SampleModel

SampleModel.getDataElements(int, int, Object, DataBuffer)
,
SampleModel.getDataElements(int, int, int, int, Object, DataBuffer)
,
SampleModel.setDataElements(int, int, Object, DataBuffer)
,
SampleModel.setDataElements(int, int, int, int, Object, DataBuffer)
,
SampleModel.getNumDataElements()