Lines Matching refs:SampleModel
30 import java.awt.image.SampleModel;
62 * Constructs a IntegerInterleavedRaster with the given SampleModel.
64 * size as the SampleModel. A DataBuffer large enough to describe the
65 * Raster is automatically created. SampleModel must be of type
67 * @param sampleModel The SampleModel that specifies the layout.
70 public IntegerInterleavedRaster(SampleModel sampleModel,
83 * Constructs a IntegerInterleavedRaster with the given SampleModel
85 * it is the same sizes the SampleModel. The DataBuffer is not
86 * initialized and must be a DataBufferInt compatible with SampleModel.
87 * SampleModel must be of type SinglePixelPackedSampleModel.
88 * @param sampleModel The SampleModel that specifies the layout.
92 public IntegerInterleavedRaster(SampleModel sampleModel,
106 * Constructs a IntegerInterleavedRaster with the given SampleModel,
108 * SampleModel must be of type SinglePixelPackedSampleModel.
117 * @param sampleModel The SampleModel that specifies the layout.
123 public IntegerInterleavedRaster(SampleModel sampleModel,
473 SampleModel sm;
528 SampleModel sm = sampleModel.createCompatibleSampleModel(w,h);