KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > awt > image > BandedSampleModel

java.awt.image
Class BandedSampleModel

java.lang.Object
  extended by java.awt.image.SampleModel
      extended by java.awt.image.ComponentSampleModel
          extended by java.awt.image.BandedSampleModel
See Also:
Top Examples, Source Code, TYPE_DOUBLE, TYPE_FLOAT, TYPE_INT, TYPE_SHORT, TYPE_USHORT, TYPE_BYTE

public BandedSampleModel(int dataType,
                         int w,
                         int h,
                         int numBands)
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public BandedSampleModel(int dataType,
                         int w,
                         int h,
                         int scanlineStride,
                         int[] bankIndices,
                         int[] bandOffsets)
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SampleModel createCompatibleSampleModel(int w,
                                               int h)
See Also:
IllegalArgumentException, ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public DataBuffer createDataBuffer()
See Also:
IllegalArgumentException, ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SampleModel createSubsetSampleModel(int[] bands)
See Also:
IllegalArgumentException, RasterFormatException, ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Object getDataElements(int x,
                              int y,
                              Object obj,
                              DataBuffer data)
See Also:
setDataElements(int, int, Object, DataBuffer), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int[] getPixel(int x,
                      int y,
                      int[] iArray,
                      DataBuffer data)
See Also:
setPixel(int, int, int[], DataBuffer), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int[] getPixels(int x,
                       int y,
                       int w,
                       int h,
                       int[] iArray,
                       DataBuffer data)
See Also:
setPixels(int, int, int, int, int[], DataBuffer), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int getSample(int x,
                     int y,
                     int b,
                     DataBuffer data)
See Also:
setSample(int, int, int, int, DataBuffer), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public double getSampleDouble(int x,
                              int y,
                              int b,
                              DataBuffer data)
See Also:
ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public float getSampleFloat(int x,
                            int y,
                            int b,
                            DataBuffer data)
See Also:
ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int[] getSamples(int x,
                        int y,
                        int w,
                        int h,
                        int b,
                        int[] iArray,
                        DataBuffer data)
See Also:
setSamples(int, int, int, int, int, int[], DataBuffer), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public int hashCode()
See Also:
Hashtable, Object.equals(java.lang.Object), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setDataElements(int x,
                            int y,
                            Object obj,
                            DataBuffer data)
See Also:
getDataElements(int, int, Object, DataBuffer), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setPixel(int x,
                     int y,
                     int[] iArray,
                     DataBuffer data)
See Also:
getPixel(int, int, int[], DataBuffer), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setPixels(int x,
                      int y,
                      int w,
                      int h,
                      int[] iArray,
                      DataBuffer data)
See Also:
getPixels(int, int, int, int, int[], DataBuffer), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setSample(int x,
                      int y,
                      int b,
                      double s,
                      DataBuffer data)
See Also:
getSample(int, int, int, DataBuffer), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setSample(int x,
                      int y,
                      int b,
                      float s,
                      DataBuffer data)
See Also:
getSample(int, int, int, DataBuffer), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setSample(int x,
                      int y,
                      int b,
                      int s,
                      DataBuffer data)
See Also:
getSample(int, int, int, DataBuffer), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void setSamples(int x,
                       int y,
                       int w,
                       int h,
                       int b,
                       int[] iArray,
                       DataBuffer data)
See Also:
getSamples(int, int, int, int, int, int[], DataBuffer), ComponentSampleModel
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags