- java.lang.Object
-
- java.awt.image.SampleModel
-
- java.awt.image.MultiPixelPackedSampleModel
-
public class MultiPixelPackedSampleModel extends SampleModel
TheMultiPixelPackedSampleModel
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 theDataBuffer
to the first pixel and must be a multiple of pixel bit stride.The following code illustrates extracting the bits for pixel
x, y
fromDataBuffer
data
and storing the pixel data in data elements of typedataType
: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);
-
-
Constructor Summary
Constructors Constructor and Description MultiPixelPackedSampleModel(int dataType, int w, int h, int numberOfBits)
Constructs aMultiPixelPackedSampleModel
with the specified data type, width, height and number of bits per pixel.MultiPixelPackedSampleModel(int dataType, int w, int h, int numberOfBits, int scanlineStride, int dataBitOffset)
Constructs aMultiPixelPackedSampleModel
with specified data type, width, height, number of bits per pixel, scanline stride and data bit offset.
-
Method Summary
Methods Modifier and Type Method and Description SampleModel
createCompatibleSampleModel(int w, int h)
Creates a newMultiPixelPackedSampleModel
with the specified width and height.DataBuffer
createDataBuffer()
Creates aDataBuffer
that corresponds to thisMultiPixelPackedSampleModel
.SampleModel
createSubsetSampleModel(int[] bands)
Creates a newMultiPixelPackedSampleModel
with a subset of the bands of thisMultiPixelPackedSampleModel
.boolean
equals(Object o)
Indicates whether some other object is "equal to" this one.int
getBitOffset(int x)
Returns the offset, in bits, into the data element in which it is stored for thex
th pixel of a scanline.int
getDataBitOffset()
Returns the data bit offset in bits.Object
getDataElements(int x, int y, Object obj, DataBuffer data)
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 thegetDataElements(int, int, java.lang.Object, java.awt.image.DataBuffer)
andsetDataElements(int, int, java.lang.Object, java.awt.image.DataBuffer)
methods.int
getOffset(int x, int y)
Returns the offset of pixel (x, y) in data array elements.int[]
getPixel(int x, int y, int[] iArray, DataBuffer data)
Returns the specified single band pixel in the first element of anint
array.int
getPixelBitStride()
Returns the pixel bit stride in bits.int
getSample(int x, int y, int b, DataBuffer data)
Returns asint
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(int band)
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 thegetDataElements
andsetDataElements
methods.int
hashCode()
Returns a hash code value for the object.void
setDataElements(int x, int y, Object obj, DataBuffer data)
Sets the data for a single pixel in the specifiedDataBuffer
from a primitive array of type TransferType.void
setPixel(int x, int y, int[] iArray, DataBuffer data)
Sets a pixel in theDataBuffer
using anint
array for input.void
setSample(int x, int y, int b, int s, DataBuffer data)
Sets a sample in the specified band for the pixel located at (x, y) in theDataBuffer
using anint
for input.-
Methods inherited from class java.awt.image.SampleModel
getDataElements, getDataType, getHeight, getNumBands, getPixel, getPixel, getPixels, getPixels, getPixels, getSampleDouble, getSampleFloat, getSamples, getSamples, getSamples, getWidth, setDataElements, setPixel, setPixel, setPixels, setPixels, setPixels, setSample, setSample, setSamples, setSamples, setSamples
-
-
-
-
Constructor Detail
-
MultiPixelPackedSampleModel
public MultiPixelPackedSampleModel(int dataType, int w, int h, int numberOfBits)
Constructs aMultiPixelPackedSampleModel
with the specified data type, width, height and number of bits per pixel.- 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 describednumberOfBits
- the number of bits per pixel- Throws:
IllegalArgumentException
- ifdataType
is not eitherDataBuffer.TYPE_BYTE
,DataBuffer.TYPE_USHORT
, orDataBuffer.TYPE_INT
-
MultiPixelPackedSampleModel
public MultiPixelPackedSampleModel(int dataType, int w, int h, int numberOfBits, int scanlineStride, int dataBitOffset)
Constructs aMultiPixelPackedSampleModel
with specified data type, width, height, number of bits per pixel, scanline stride and data bit offset.- 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 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- Throws:
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
- ifw
orh
is not greater than 0IllegalArgumentException
- ifdataType
is not eitherDataBuffer.TYPE_BYTE
,DataBuffer.TYPE_USHORT
, orDataBuffer.TYPE_INT
-
-
Method Detail
-
createCompatibleSampleModel
public SampleModel createCompatibleSampleModel(int w, int h)
Creates a newMultiPixelPackedSampleModel
with the specified width and height. The newMultiPixelPackedSampleModel
has the same storage data type and number of bits per pixel as thisMultiPixelPackedSampleModel
.- Specified by:
createCompatibleSampleModel
in classSampleModel
- Parameters:
w
- the specified widthh
- the specified height- Returns:
- a
SampleModel
with the specified width and height and with the same storage data type and number of bits per pixel as thisMultiPixelPackedSampleModel
. - Throws:
IllegalArgumentException
- ifw
orh
is not greater than 0
-
createDataBuffer
public DataBuffer createDataBuffer()
Creates aDataBuffer
that corresponds to thisMultiPixelPackedSampleModel
. TheDataBuffer
object's data type and size is consistent with thisMultiPixelPackedSampleModel
. TheDataBuffer
has a single bank.- Specified by:
createDataBuffer
in classSampleModel
- Returns:
- a
DataBuffer
with the same data type and size as thisMultiPixelPackedSampleModel
.
-
getNumDataElements
public int getNumDataElements()
Returns the number of data elements needed to transfer one pixel via thegetDataElements(int, int, java.lang.Object, java.awt.image.DataBuffer)
andsetDataElements(int, int, java.lang.Object, java.awt.image.DataBuffer)
methods. For aMultiPixelPackedSampleModel
, this is one.- Specified by:
getNumDataElements
in classSampleModel
- Returns:
- the number of data elements.
- See Also:
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()
-
getSampleSize
public int[] getSampleSize()
Returns the number of bits per sample for all bands.- Specified by:
getSampleSize
in classSampleModel
- Returns:
- the number of bits per sample.
-
getSampleSize
public int getSampleSize(int band)
Returns the number of bits per sample for the specified band.- Specified by:
getSampleSize
in classSampleModel
- Parameters:
band
- the specified band- Returns:
- the number of bits per sample for the specified band.
-
getOffset
public int getOffset(int x, int y)
Returns the offset of pixel (x, y) in data array elements.- Parameters:
x
- the X coordinate of the specified pixely
- the Y coordinate of the specified pixel- Returns:
- the offset of the specified pixel.
-
getBitOffset
public int getBitOffset(int x)
Returns the offset, in bits, into the data element in which it is stored for thex
th pixel of a scanline. This offset is the same for all scanlines.- Parameters:
x
- the specified pixel- Returns:
- the bit offset of the specified pixel.
-
getScanlineStride
public int getScanlineStride()
Returns the scanline stride.- Returns:
- the scanline stride of this
MultiPixelPackedSampleModel
.
-
getPixelBitStride
public int getPixelBitStride()
Returns the pixel bit stride in bits. This value is the same as the number of bits per pixel.- Returns:
- the
pixelBitStride
of thisMultiPixelPackedSampleModel
.
-
getDataBitOffset
public int getDataBitOffset()
Returns the data bit offset in bits.- Returns:
- the
dataBitOffset
of thisMultiPixelPackedSampleModel
.
-
getTransferType
public int getTransferType()
Returns the TransferType used to transfer pixels by way of thegetDataElements
andsetDataElements
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.- Overrides:
getTransferType
in classSampleModel
- Returns:
- the transfertype.
- See Also:
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()
,DataBuffer
-
createSubsetSampleModel
public SampleModel createSubsetSampleModel(int[] bands)
Creates a newMultiPixelPackedSampleModel
with a subset of the bands of thisMultiPixelPackedSampleModel
. Since aMultiPixelPackedSampleModel
only has one band, the bands argument must have a length of one and indicate the zeroth band.- Specified by:
createSubsetSampleModel
in classSampleModel
- Parameters:
bands
- the specified bands- Returns:
- a new
SampleModel
with a subset of bands of thisMultiPixelPackedSampleModel
. - Throws:
RasterFormatException
- if the number of bands requested is not one.IllegalArgumentException
- ifw
orh
is not greater than 0
-
getSample
public int getSample(int x, int y, int b, DataBuffer data)
Returns asint
the sample in a specified band for the pixel located at (x, y). AnArrayIndexOutOfBoundsException
is thrown if the coordinates are not in bounds.- Specified by:
getSample
in classSampleModel
- Parameters:
x
- the X coordinate of the specified pixely
- the Y coordinate of the specified pixelb
- the band to return, which is assumed to be 0data
- theDataBuffer
containing the image data- Returns:
- the specified band containing the sample of the specified pixel.
- Throws:
ArrayIndexOutOfBoundException
- if the specified coordinates are not in bounds.- See Also:
setSample(int, int, int, int, DataBuffer)
-
setSample
public void setSample(int x, int y, int b, int s, DataBuffer data)
Sets a sample in the specified band for the pixel located at (x, y) in theDataBuffer
using anint
for input. AnArrayIndexOutOfBoundsException
is thrown if the coordinates are not in bounds.- Specified by:
setSample
in classSampleModel
- Parameters:
x
- the X coordinate of the specified pixely
- the Y coordinate of the specified pixelb
- the band to return, which is assumed to be 0s
- the input sample as anint
data
- theDataBuffer
where image data is stored- Throws:
ArrayIndexOutOfBoundsException
- if the coordinates are not in bounds.- See Also:
getSample(int, int, int, DataBuffer)
-
getDataElements
public Object getDataElements(int x, int y, Object obj, DataBuffer data)
Returns data for a single pixel in a primitive array of type TransferType. For aMultiPixelPackedSampleModel
, the array has one element, and the type is the smallest of DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, or DataBuffer.TYPE_INT that can hold a single pixel. Generally,obj
should be passed in asnull
, so that theObject
is created automatically and is the correct primitive data type.The following code illustrates transferring data for one pixel from
DataBuffer
db1
, whose storage layout is described byMultiPixelPackedSampleModel
mppsm1
, toDataBuffer
db2
, whose storage layout is described byMultiPixelPackedSampleModel
mppsm2
. The transfer is generally more efficient than usinggetPixel
orsetPixel
.MultiPixelPackedSampleModel mppsm1, mppsm2; DataBufferInt db1, db2; mppsm2.setDataElements(x, y, mppsm1.getDataElements(x, y, null, db1), db2);
UsinggetDataElements
orsetDataElements
to transfer between twoDataBuffer/SampleModel
pairs is legitimate if theSampleModels
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 notnull
, it should be a primitive array of type TransferType. Otherwise, aClassCastException
is thrown. AnArrayIndexOutOfBoundsException
is thrown if the coordinates are not in bounds, or ifobj
is notnull
and is not large enough to hold the pixel data.- Specified by:
getDataElements
in classSampleModel
- Parameters:
x
- the X coordinate of the specified pixely
- the Y coordinate of the specified pixelobj
- a primitive array in which to return the pixel data ornull
.data
- theDataBuffer
containing the image data.- Returns:
- an
Object
containing data for the specified pixel. - Throws:
ClassCastException
- ifobj
is not a primitive array of type TransferType or is notnull
ArrayIndexOutOfBoundsException
- if the coordinates are not in bounds, or ifobj
is notnull
or not large enough to hold the pixel data- See Also:
setDataElements(int, int, Object, DataBuffer)
-
getPixel
public int[] getPixel(int x, int y, int[] iArray, DataBuffer data)
Returns the specified single band pixel in the first element of anint
array.ArrayIndexOutOfBoundsException
is thrown if the coordinates are not in bounds.- Overrides:
getPixel
in classSampleModel
- Parameters:
x
- the X coordinate of the specified pixely
- the Y coordinate of the specified pixeliArray
- the array containing the pixel to be returned ornull
data
- theDataBuffer
where image data is stored- Returns:
- an array containing the specified pixel.
- Throws:
ArrayIndexOutOfBoundsException
- if the coordinates are not in bounds- See Also:
setPixel(int, int, int[], DataBuffer)
-
setDataElements
public void setDataElements(int x, int y, Object obj, DataBuffer data)
Sets the data for a single pixel in the specifiedDataBuffer
from a primitive array of type TransferType. For aMultiPixelPackedSampleModel
, only the first element of the array holds valid data, and the type must be the smallest of DataBuffer.TYPE_BYTE, DataBuffer.TYPE_USHORT, or DataBuffer.TYPE_INT that can hold a single pixel.The following code illustrates transferring data for one pixel from
DataBuffer
db1
, whose storage layout is described byMultiPixelPackedSampleModel
mppsm1
, toDataBuffer
db2
, whose storage layout is described byMultiPixelPackedSampleModel
mppsm2
. The transfer is generally more efficient than usinggetPixel
orsetPixel
.MultiPixelPackedSampleModel mppsm1, mppsm2; DataBufferInt db1, db2; mppsm2.setDataElements(x, y, mppsm1.getDataElements(x, y, null, db1), db2);
UsinggetDataElements
orsetDataElements
to transfer between twoDataBuffer/SampleModel
pairs is legitimate if theSampleModel
objects have the same number of bands, corresponding bands have the same number of bits per sample, and the TransferTypes are the same.obj
must be a primitive array of type TransferType. Otherwise, aClassCastException
is thrown. AnArrayIndexOutOfBoundsException
is thrown if the coordinates are not in bounds, or ifobj
is not large enough to hold the pixel data.- Specified by:
setDataElements
in classSampleModel
- Parameters:
x
- the X coordinate of the pixel locationy
- the Y coordinate of the pixel locationobj
- a primitive array containing pixel datadata
- theDataBuffer
containing the image data- See Also:
getDataElements(int, int, Object, DataBuffer)
-
setPixel
public void setPixel(int x, int y, int[] iArray, DataBuffer data)
Sets a pixel in theDataBuffer
using anint
array for input.ArrayIndexOutOfBoundsException
is thrown if the coordinates are not in bounds.- Overrides:
setPixel
in classSampleModel
- Parameters:
x
- the X coordinate of the pixel locationy
- the Y coordinate of the pixel locationiArray
- the input pixel in anint
arraydata
- theDataBuffer
containing the image data- See Also:
getPixel(int, int, int[], DataBuffer)
-
equals
public boolean equals(Object o)
Description copied from class:Object
Indicates whether some other object is "equal to" this one.The
equals
method implements an equivalence relation on non-null object references:- It is reflexive: for any non-null reference value
x
,x.equals(x)
should returntrue
. - It is symmetric: for any non-null reference values
x
andy
,x.equals(y)
should returntrue
if and only ify.equals(x)
returnstrue
. - It is transitive: for any non-null reference values
x
,y
, andz
, ifx.equals(y)
returnstrue
andy.equals(z)
returnstrue
, thenx.equals(z)
should returntrue
. - It is consistent: for any non-null reference values
x
andy
, multiple invocations ofx.equals(y)
consistently returntrue
or consistently returnfalse
, provided no information used inequals
comparisons on the objects is modified. - For any non-null reference value
x
,x.equals(null)
should returnfalse
.
The
equals
method for classObject
implements the most discriminating possible equivalence relation on objects; that is, for any non-null reference valuesx
andy
, this method returnstrue
if and only ifx
andy
refer to the same object (x == y
has the valuetrue
).Note that it is generally necessary to override the
hashCode
method whenever this method is overridden, so as to maintain the general contract for thehashCode
method, which states that equal objects must have equal hash codes.- Overrides:
equals
in classObject
- Parameters:
o
- the reference object with which to compare.- Returns:
true
if this object is the same as the obj argument;false
otherwise.- See Also:
Object.hashCode()
,HashMap
- It is reflexive: for any non-null reference value
-
hashCode
public int hashCode()
Description copied from class:Object
Returns a hash code value for the object. This method is supported for the benefit of hash tables such as those provided byHashMap
.The general contract of
hashCode
is:- Whenever it is invoked on the same object more than once during
an execution of a Java application, the
hashCode
method must consistently return the same integer, provided no information used inequals
comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application. - If two objects are equal according to the
equals(Object)
method, then calling thehashCode
method on each of the two objects must produce the same integer result. - It is not required that if two objects are unequal
according to the
Object.equals(java.lang.Object)
method, then calling thehashCode
method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables.
As much as is reasonably practical, the hashCode method defined by class
Object
does return distinct integers for distinct objects. (This is typically implemented by converting the internal address of the object into an integer, but this implementation technique is not required by the JavaTM programming language.)- Overrides:
hashCode
in classObject
- Returns:
- a hash code value for this object.
- See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
- Whenever it is invoked on the same object more than once during
an execution of a Java application, the
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/awt/image/multipixelpackedsamplemodel.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.