Searched refs:BandedSampleModel (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/java/awt/image/
H A DGetSamplesTest.java33 import java.awt.image.BandedSampleModel;
55 classes.add(BandedSampleModel.class);
115 } else if (cls == BandedSampleModel.class) {
116 res = new BandedSampleModel(dataType, width, height, numBands);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBandedSampleModel.java49 * scanline. The pixel stride for a BandedSampleModel is one.
67 public final class BandedSampleModel extends ComponentSampleModel class in inherits:ComponentSampleModel
71 * Constructs a BandedSampleModel with the specified parameters.
84 public BandedSampleModel(int dataType, int w, int h, int numBands) { method in class:BandedSampleModel
86 BandedSampleModel.createIndicesArray(numBands),
87 BandedSampleModel.createOffsetArray(numBands));
91 * Constructs a BandedSampleModel with the specified parameters.
106 public BandedSampleModel(int dataType, method in class:BandedSampleModel
116 * Creates a new BandedSampleModel with the specified
117 * width and height. The new BandedSampleModel wil
[all...]
H A DRaster.java69 * PixelInterleavedSampleModel or BandedSampleModel, or packed several to
122 * @see java.awt.image.BandedSampleModel
283 * Creates a Raster based on a BandedSampleModel with the
330 * Creates a Raster based on a BandedSampleModel with the
660 * Creates a Raster based on a BandedSampleModel with the
709 BandedSampleModel bsm =
710 new BandedSampleModel(dataType, w, h,
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DByteBandedRaster.java31 import java.awt.image.BandedSampleModel;
48 * ComponentColorModel. This class requires a BandedSampleModel.
73 * must be of type BandedSampleModel.
94 * SampleModel must be of type BandedSampleModel.
112 * SampleModel must be of type BandedSampleModel.
143 if (sampleModel instanceof BandedSampleModel) {
144 BandedSampleModel bsm = (BandedSampleModel)sampleModel;
196 * a Raster with a BandedSampleModel.
H A DShortBandedRaster.java31 import java.awt.image.BandedSampleModel;
46 * ComponentColorModel. This class requires a BandedSampleModel.
71 * BandedSampleModel.
92 * SampleModel must be of type BandedSampleModel.
110 * SampleModel must be of type BandedSampleModel.
140 if (sampleModel instanceof BandedSampleModel) {
141 BandedSampleModel bsm = (BandedSampleModel)sampleModel;
192 * a Raster with a BandedSampleModel.
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageTypeSpecifier.java30 import java.awt.image.BandedSampleModel;
467 this.sampleModel = new BandedSampleModel(dataType,
519 * <code>BandedSampleModel</code> to store each channel in a
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageWriter.java40 import java.awt.image.BandedSampleModel;
267 if (sampleModel instanceof BandedSampleModel) {
268 // for images with BandedSampleModel we can not work

Completed in 57 milliseconds