HomeSort by relevance Sort by last modified time
    Searched refs:SampleModel (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/base/awt/javax/imageio/
ImageTypeSpecifier.java 25 import java.awt.image.SampleModel;
32 * SampleModel and the ColorModel of an image.
44 * The SampleModel of this ImageTypeSpecifier.
46 protected SampleModel sampleModel;
50 * SampleModel objects.
54 * @param sampleModel
55 * the SampleModel.
57 public ImageTypeSpecifier(ColorModel colorModel, SampleModel sampleModel) {
    [all...]
  /frameworks/base/awt/java/awt/image/
RenderedImage.java 83 * Gets the SampleModel of this RenderedImage.
85 * @return the SampleModel of this RenderedImage.
87 public SampleModel getSampleModel();
PixelInterleavedSampleModel.java 90 public SampleModel createSubsetSampleModel(int bands[]) {
101 public SampleModel createCompatibleSampleModel(int w, int h) {
WritableRaster.java 38 * Instantiates a new WritableRaster object with the specified SampleModel,
41 * @param sampleModel
42 * the specified SampleModel.
48 * this point defines the translation point from the SampleModel
53 protected WritableRaster(SampleModel sampleModel, DataBuffer dataBuffer, Rectangle aRegion,
55 super(sampleModel, dataBuffer, aRegion, sampleModelTranslate, parent);
59 * Instantiates a new WritableRaster object with the specified SampleModel
63 * @param sampleModel
64 * the specified SampleModel
    [all...]
Raster.java 32 * defined by DataBuffer and SampleModel objects. The DataBuffer object stores
76 * The SampleModel of this Raster.
78 protected SampleModel sampleModel;
81 * The X translation from the coordinate space of the SampleModel of this
87 * The Y translation from the coordinate space of the SampleModel of this
154 BandedSampleModel sampleModel = new BandedSampleModel(dataType, w, h, scanlineStride,
157 return new OrdinaryWritableRaster(sampleModel, dataBuffer, location);
355 PixelInterleavedSampleModel sampleModel = new PixelInterleavedSampleModel(dataType, w, h,
358 return new OrdinaryWritableRaster(sampleModel, dataBuffer, location)
    [all...]
MultiPixelPackedSampleModel.java 34 public class MultiPixelPackedSampleModel extends SampleModel {
211 public SampleModel createSubsetSampleModel(int bands[]) {
220 public SampleModel createCompatibleSampleModel(int w, int h) {
PackedColorModel.java 203 public boolean isCompatibleSampleModel(SampleModel sm) {
217 public SampleModel createCompatibleSampleModel(int w, int h) {
BandCombineOp.java 259 private final SampleModelInfo checkSampleModel(SampleModel sm) {
457 SampleModel srcSM = src.getSampleModel();
458 SampleModel dstSM = dst.getSampleModel();
ConvolveOp.java 205 SampleModel sm = src.getSampleModel();
415 SampleModel srcSM = src.getSampleModel();
416 SampleModel dstSM = dst.getSampleModel();
SinglePixelPackedSampleModel.java 36 public class SinglePixelPackedSampleModel extends SampleModel {
235 public SampleModel createSubsetSampleModel(int bands[]) {
251 public SampleModel createCompatibleSampleModel(int w, int h) {
RescaleOp.java 230 SampleModel sm = src.getSampleModel();
406 private final void createLevels(SampleModel sm, int numBands, boolean skipAlpha, int levels[],
560 SampleModel srcSM = src.getSampleModel();
561 SampleModel dstSM = dst.getSampleModel();
SampleModel.java 27 * The SampleModel class is abstract class for retrieving pixel's samples in the
34 * SampleModel. The SampleModel allows access to the samples in the DataBuffer.
38 public abstract class SampleModel {
41 * The width of the image data which this SampleModel describes.
46 * The height of the image data which this SampleModel describes.
51 * The number of bands of image data which this SampleModel describes.
56 * The data type of the image data which this SampleModel describes.
61 * Instantiates a new SampleModel with the specified data type, width,
73 public SampleModel(int dataType, int w, int h, int numBands)
    [all...]
ColorModel.java 464 public boolean isCompatibleSampleModel(SampleModel sm) {
478 public SampleModel createCompatibleSampleModel(int w, int h) {
BufferedImage.java 539 SampleModel sm = raster.getSampleModel();
540 SampleModel nsm = sm.createCompatibleSampleModel(w, h);
617 public SampleModel getSampleModel() {
ComponentSampleModel.java 44 public class ComponentSampleModel extends SampleModel {
332 * @see java.awt.image.SampleModel#createSubsetSampleModel(int[])
335 public SampleModel createSubsetSampleModel(int bands[]) {
356 public SampleModel createCompatibleSampleModel(int w, int h) {
BandedSampleModel.java 106 public SampleModel createCompatibleSampleModel(int w, int h) {
139 public SampleModel createSubsetSampleModel(int[] bands) {
AffineTransformOp.java 390 SampleModel srcSM = src.getSampleModel();
391 SampleModel dstSM = dst.getSampleModel();
  /frameworks/base/awt/org/apache/harmony/awt/gl/image/
OrdinaryWritableRaster.java 31 import java.awt.image.SampleModel;
36 public OrdinaryWritableRaster(SampleModel sampleModel,
39 super(sampleModel, dataBuffer, aRegion, sampleModelTranslate, parent);
42 public OrdinaryWritableRaster(SampleModel sampleModel,
44 super(sampleModel, dataBuffer, origin);
47 public OrdinaryWritableRaster(SampleModel sampleModel, Point origin) {
48 super(sampleModel, origin)
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/color/
NativeImageFormat.java 28 import java.awt.image.SampleModel;
285 SampleModel sm = bi.getSampleModel();
323 SampleModel sm = r.getSampleModel();
628 private static int calculateAlphaOffset(SampleModel sm, Raster r) {
ColorScaler.java 27 import java.awt.image.SampleModel;
71 public void loadScalingData(SampleModel sm) {
  /cts/tools/host/src/com/android/cts/
HostUtils.java 25 import java.awt.image.SampleModel;
75 SampleModel sampleModel = new SinglePixelPackedSampleModel(DataBuffer.TYPE_USHORT,
95 Raster raster = Raster.createRaster(sampleModel,
  /frameworks/base/awt/org/apache/harmony/awt/gl/
ImageSurface.java 35 import java.awt.image.SampleModel;
151 SampleModel sm = raster.getSampleModel();
Surface.java 36 import java.awt.image.SampleModel;
189 SampleModel sm = raster.getSampleModel();
  /frameworks/base/awt/org/apache/harmony/x/imageio/plugins/png/
PNGImageWriter.java 32 import java.awt.image.SampleModel;
145 SampleModel model = sourceRaster.getSampleModel();
  /frameworks/base/awt/org/apache/harmony/x/imageio/plugins/jpeg/
JPEGImageWriter.java 202 SampleModel model = sourceRaster.getSampleModel();

Completed in 761 milliseconds

1 2