Java Code Examples for java.awt.image.ComponentSampleModel#getBankIndices()
The following examples show how to use
java.awt.image.ComponentSampleModel#getBankIndices() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ByteInterleavedRaster.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
/*** Analyzes a ComponentSampleModel to determine if it can function * as a PixelInterleavedSampleModel. In order to do so, it must use * only bank 0 of its DataBuffer, and the data offsets must span a range * of less than pixelStride. * * <p> These properties are trivially true for a 1-banded SampleModel. */ private boolean isInterleaved(ComponentSampleModel sm) { // Analyze ComponentSampleModel to determine if it has the // properties of a PixelInterleavedSampleModel int numBands = sampleModel.getNumBands(); if (numBands == 1) { return true; } // Determine banks used int[] bankIndices = sm.getBankIndices(); for (int i = 0; i < numBands; i++) { if (bankIndices[i] != 0) { return false; } } // Determine range of band offsets int[] bandOffsets = sm.getBandOffsets(); int minOffset = bandOffsets[0]; int maxOffset = minOffset; for (int i = 1; i < numBands; i++) { int offset = bandOffsets[i]; if (offset < minOffset) { minOffset = offset; } if (offset > maxOffset) { maxOffset = offset; } } if (maxOffset - minOffset >= sm.getPixelStride()) { return false; } return true; }
Example 2
Source File: ByteInterleavedRaster.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/*** Analyzes a ComponentSampleModel to determine if it can function * as a PixelInterleavedSampleModel. In order to do so, it must use * only bank 0 of its DataBuffer, and the data offsets must span a range * of less than pixelStride. * * <p> These properties are trivially true for a 1-banded SampleModel. */ private boolean isInterleaved(ComponentSampleModel sm) { // Analyze ComponentSampleModel to determine if it has the // properties of a PixelInterleavedSampleModel int numBands = sampleModel.getNumBands(); if (numBands == 1) { return true; } // Determine banks used int[] bankIndices = sm.getBankIndices(); for (int i = 0; i < numBands; i++) { if (bankIndices[i] != 0) { return false; } } // Determine range of band offsets int[] bandOffsets = sm.getBandOffsets(); int minOffset = bandOffsets[0]; int maxOffset = minOffset; for (int i = 1; i < numBands; i++) { int offset = bandOffsets[i]; if (offset < minOffset) { minOffset = offset; } if (offset > maxOffset) { maxOffset = offset; } } if (maxOffset - minOffset >= sm.getPixelStride()) { return false; } return true; }
Example 3
Source File: ByteInterleavedRaster.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
/*** Analyzes a ComponentSampleModel to determine if it can function * as a PixelInterleavedSampleModel. In order to do so, it must use * only bank 0 of its DataBuffer, and the data offsets must span a range * of less than pixelStride. * * <p> These properties are trivially true for a 1-banded SampleModel. */ private boolean isInterleaved(ComponentSampleModel sm) { // Analyze ComponentSampleModel to determine if it has the // properties of a PixelInterleavedSampleModel int numBands = sampleModel.getNumBands(); if (numBands == 1) { return true; } // Determine banks used int[] bankIndices = sm.getBankIndices(); for (int i = 0; i < numBands; i++) { if (bankIndices[i] != 0) { return false; } } // Determine range of band offsets int[] bandOffsets = sm.getBandOffsets(); int minOffset = bandOffsets[0]; int maxOffset = minOffset; for (int i = 1; i < numBands; i++) { int offset = bandOffsets[i]; if (offset < minOffset) { minOffset = offset; } if (offset > maxOffset) { maxOffset = offset; } } if (maxOffset - minOffset >= sm.getPixelStride()) { return false; } return true; }
Example 4
Source File: ByteInterleavedRaster.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
/*** Analyzes a ComponentSampleModel to determine if it can function * as a PixelInterleavedSampleModel. In order to do so, it must use * only bank 0 of its DataBuffer, and the data offsets must span a range * of less than pixelStride. * * <p> These properties are trivially true for a 1-banded SampleModel. */ private boolean isInterleaved(ComponentSampleModel sm) { // Analyze ComponentSampleModel to determine if it has the // properties of a PixelInterleavedSampleModel int numBands = sampleModel.getNumBands(); if (numBands == 1) { return true; } // Determine banks used int[] bankIndices = sm.getBankIndices(); for (int i = 0; i < numBands; i++) { if (bankIndices[i] != 0) { return false; } } // Determine range of band offsets int[] bandOffsets = sm.getBandOffsets(); int minOffset = bandOffsets[0]; int maxOffset = minOffset; for (int i = 1; i < numBands; i++) { int offset = bandOffsets[i]; if (offset < minOffset) { minOffset = offset; } if (offset > maxOffset) { maxOffset = offset; } } if (maxOffset - minOffset >= sm.getPixelStride()) { return false; } return true; }
Example 5
Source File: ByteInterleavedRaster.java From Bytecoder with Apache License 2.0 | 5 votes |
/*** Analyzes a ComponentSampleModel to determine if it can function * as a PixelInterleavedSampleModel. In order to do so, it must use * only bank 0 of its DataBuffer, and the data offsets must span a range * of less than pixelStride. * * <p> These properties are trivially true for a 1-banded SampleModel. */ private boolean isInterleaved(ComponentSampleModel sm) { // Analyze ComponentSampleModel to determine if it has the // properties of a PixelInterleavedSampleModel int numBands = sampleModel.getNumBands(); if (numBands == 1) { return true; } // Determine banks used int[] bankIndices = sm.getBankIndices(); for (int i = 0; i < numBands; i++) { if (bankIndices[i] != 0) { return false; } } // Determine range of band offsets int[] bandOffsets = sm.getBandOffsets(); int minOffset = bandOffsets[0]; int maxOffset = minOffset; for (int i = 1; i < numBands; i++) { int offset = bandOffsets[i]; if (offset < minOffset) { minOffset = offset; } if (offset > maxOffset) { maxOffset = offset; } } if (maxOffset - minOffset >= sm.getPixelStride()) { return false; } return true; }
Example 6
Source File: ByteInterleavedRaster.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/*** Analyzes a ComponentSampleModel to determine if it can function * as a PixelInterleavedSampleModel. In order to do so, it must use * only bank 0 of its DataBuffer, and the data offsets must span a range * of less than pixelStride. * * <p> These properties are trivially true for a 1-banded SampleModel. */ private boolean isInterleaved(ComponentSampleModel sm) { // Analyze ComponentSampleModel to determine if it has the // properties of a PixelInterleavedSampleModel int numBands = sampleModel.getNumBands(); if (numBands == 1) { return true; } // Determine banks used int[] bankIndices = sm.getBankIndices(); for (int i = 0; i < numBands; i++) { if (bankIndices[i] != 0) { return false; } } // Determine range of band offsets int[] bandOffsets = sm.getBandOffsets(); int minOffset = bandOffsets[0]; int maxOffset = minOffset; for (int i = 1; i < numBands; i++) { int offset = bandOffsets[i]; if (offset < minOffset) { minOffset = offset; } if (offset > maxOffset) { maxOffset = offset; } } if (maxOffset - minOffset >= sm.getPixelStride()) { return false; } return true; }
Example 7
Source File: ByteInterleavedRaster.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/*** Analyzes a ComponentSampleModel to determine if it can function * as a PixelInterleavedSampleModel. In order to do so, it must use * only bank 0 of its DataBuffer, and the data offsets must span a range * of less than pixelStride. * * <p> These properties are trivially true for a 1-banded SampleModel. */ private boolean isInterleaved(ComponentSampleModel sm) { // Analyze ComponentSampleModel to determine if it has the // properties of a PixelInterleavedSampleModel int numBands = sampleModel.getNumBands(); if (numBands == 1) { return true; } // Determine banks used int[] bankIndices = sm.getBankIndices(); for (int i = 0; i < numBands; i++) { if (bankIndices[i] != 0) { return false; } } // Determine range of band offsets int[] bandOffsets = sm.getBandOffsets(); int minOffset = bandOffsets[0]; int maxOffset = minOffset; for (int i = 1; i < numBands; i++) { int offset = bandOffsets[i]; if (offset < minOffset) { minOffset = offset; } if (offset > maxOffset) { maxOffset = offset; } } if (maxOffset - minOffset >= sm.getPixelStride()) { return false; } return true; }
Example 8
Source File: ByteInterleavedRaster.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/*** Analyzes a ComponentSampleModel to determine if it can function * as a PixelInterleavedSampleModel. In order to do so, it must use * only bank 0 of its DataBuffer, and the data offsets must span a range * of less than pixelStride. * * <p> These properties are trivially true for a 1-banded SampleModel. */ private boolean isInterleaved(ComponentSampleModel sm) { // Analyze ComponentSampleModel to determine if it has the // properties of a PixelInterleavedSampleModel int numBands = sampleModel.getNumBands(); if (numBands == 1) { return true; } // Determine banks used int[] bankIndices = sm.getBankIndices(); for (int i = 0; i < numBands; i++) { if (bankIndices[i] != 0) { return false; } } // Determine range of band offsets int[] bandOffsets = sm.getBandOffsets(); int minOffset = bandOffsets[0]; int maxOffset = minOffset; for (int i = 1; i < numBands; i++) { int offset = bandOffsets[i]; if (offset < minOffset) { minOffset = offset; } if (offset > maxOffset) { maxOffset = offset; } } if (maxOffset - minOffset >= sm.getPixelStride()) { return false; } return true; }
Example 9
Source File: ByteInterleavedRaster.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/*** Analyzes a ComponentSampleModel to determine if it can function * as a PixelInterleavedSampleModel. In order to do so, it must use * only bank 0 of its DataBuffer, and the data offsets must span a range * of less than pixelStride. * * <p> These properties are trivially true for a 1-banded SampleModel. */ private boolean isInterleaved(ComponentSampleModel sm) { // Analyze ComponentSampleModel to determine if it has the // properties of a PixelInterleavedSampleModel int numBands = sampleModel.getNumBands(); if (numBands == 1) { return true; } // Determine banks used int[] bankIndices = sm.getBankIndices(); for (int i = 0; i < numBands; i++) { if (bankIndices[i] != 0) { return false; } } // Determine range of band offsets int[] bandOffsets = sm.getBandOffsets(); int minOffset = bandOffsets[0]; int maxOffset = minOffset; for (int i = 1; i < numBands; i++) { int offset = bandOffsets[i]; if (offset < minOffset) { minOffset = offset; } if (offset > maxOffset) { maxOffset = offset; } } if (maxOffset - minOffset >= sm.getPixelStride()) { return false; } return true; }
Example 10
Source File: ByteInterleavedRaster.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/*** Analyzes a ComponentSampleModel to determine if it can function * as a PixelInterleavedSampleModel. In order to do so, it must use * only bank 0 of its DataBuffer, and the data offsets must span a range * of less than pixelStride. * * <p> These properties are trivially true for a 1-banded SampleModel. */ private boolean isInterleaved(ComponentSampleModel sm) { // Analyze ComponentSampleModel to determine if it has the // properties of a PixelInterleavedSampleModel int numBands = sampleModel.getNumBands(); if (numBands == 1) { return true; } // Determine banks used int[] bankIndices = sm.getBankIndices(); for (int i = 0; i < numBands; i++) { if (bankIndices[i] != 0) { return false; } } // Determine range of band offsets int[] bandOffsets = sm.getBandOffsets(); int minOffset = bandOffsets[0]; int maxOffset = minOffset; for (int i = 1; i < numBands; i++) { int offset = bandOffsets[i]; if (offset < minOffset) { minOffset = offset; } if (offset > maxOffset) { maxOffset = offset; } } if (maxOffset - minOffset >= sm.getPixelStride()) { return false; } return true; }
Example 11
Source File: ImageUtil.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
/** * Returns whether the image has contiguous data across rows. */ public static final boolean imageIsContiguous(RenderedImage image) { SampleModel sm; if(image instanceof BufferedImage) { WritableRaster ras = ((BufferedImage)image).getRaster(); sm = ras.getSampleModel(); } else { sm = image.getSampleModel(); } if (sm instanceof ComponentSampleModel) { // Ensure image rows samples are stored contiguously // in a single bank. ComponentSampleModel csm = (ComponentSampleModel)sm; if (csm.getPixelStride() != csm.getNumBands()) { return false; } int[] bandOffsets = csm.getBandOffsets(); for (int i = 0; i < bandOffsets.length; i++) { if (bandOffsets[i] != i) { return false; } } int[] bankIndices = csm.getBankIndices(); for (int i = 0; i < bandOffsets.length; i++) { if (bankIndices[i] != 0) { return false; } } return true; } // Otherwise true if and only if it's a bilevel image with // a MultiPixelPackedSampleModel, 1 bit per pixel, and 1 bit // pixel stride. return ImageUtil.isBinary(sm); }
Example 12
Source File: ImageUtil.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
/** * Returns whether the image has contiguous data across rows. */ public static final boolean imageIsContiguous(RenderedImage image) { SampleModel sm; if(image instanceof BufferedImage) { WritableRaster ras = ((BufferedImage)image).getRaster(); sm = ras.getSampleModel(); } else { sm = image.getSampleModel(); } if (sm instanceof ComponentSampleModel) { // Ensure image rows samples are stored contiguously // in a single bank. ComponentSampleModel csm = (ComponentSampleModel)sm; if (csm.getPixelStride() != csm.getNumBands()) { return false; } int[] bandOffsets = csm.getBandOffsets(); for (int i = 0; i < bandOffsets.length; i++) { if (bandOffsets[i] != i) { return false; } } int[] bankIndices = csm.getBankIndices(); for (int i = 0; i < bandOffsets.length; i++) { if (bankIndices[i] != 0) { return false; } } return true; } // Otherwise true if and only if it's a bilevel image with // a MultiPixelPackedSampleModel, 1 bit per pixel, and 1 bit // pixel stride. return ImageUtil.isBinary(sm); }
Example 13
Source File: ImageUtil.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
/** * Returns whether the image has contiguous data across rows. */ public static final boolean imageIsContiguous(RenderedImage image) { SampleModel sm; if(image instanceof BufferedImage) { WritableRaster ras = ((BufferedImage)image).getRaster(); sm = ras.getSampleModel(); } else { sm = image.getSampleModel(); } if (sm instanceof ComponentSampleModel) { // Ensure image rows samples are stored contiguously // in a single bank. ComponentSampleModel csm = (ComponentSampleModel)sm; if (csm.getPixelStride() != csm.getNumBands()) { return false; } int[] bandOffsets = csm.getBandOffsets(); for (int i = 0; i < bandOffsets.length; i++) { if (bandOffsets[i] != i) { return false; } } int[] bankIndices = csm.getBankIndices(); for (int i = 0; i < bandOffsets.length; i++) { if (bankIndices[i] != 0) { return false; } } return true; } // Otherwise true if and only if it's a bilevel image with // a MultiPixelPackedSampleModel, 1 bit per pixel, and 1 bit // pixel stride. return ImageUtil.isBinary(sm); }
Example 14
Source File: ImageUtil.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
/** * Returns whether the image has contiguous data across rows. */ public static final boolean imageIsContiguous(RenderedImage image) { SampleModel sm; if(image instanceof BufferedImage) { WritableRaster ras = ((BufferedImage)image).getRaster(); sm = ras.getSampleModel(); } else { sm = image.getSampleModel(); } if (sm instanceof ComponentSampleModel) { // Ensure image rows samples are stored contiguously // in a single bank. ComponentSampleModel csm = (ComponentSampleModel)sm; if (csm.getPixelStride() != csm.getNumBands()) { return false; } int[] bandOffsets = csm.getBandOffsets(); for (int i = 0; i < bandOffsets.length; i++) { if (bandOffsets[i] != i) { return false; } } int[] bankIndices = csm.getBankIndices(); for (int i = 0; i < bandOffsets.length; i++) { if (bankIndices[i] != 0) { return false; } } return true; } // Otherwise true if and only if it's a bilevel image with // a MultiPixelPackedSampleModel, 1 bit per pixel, and 1 bit // pixel stride. return ImageUtil.isBinary(sm); }
Example 15
Source File: ImageUtil.java From Bytecoder with Apache License 2.0 | 4 votes |
/** * Returns whether the image has contiguous data across rows. */ public static final boolean imageIsContiguous(RenderedImage image) { SampleModel sm; if(image instanceof BufferedImage) { WritableRaster ras = ((BufferedImage)image).getRaster(); sm = ras.getSampleModel(); } else { sm = image.getSampleModel(); } if (sm instanceof ComponentSampleModel) { // Ensure image rows samples are stored contiguously // in a single bank. ComponentSampleModel csm = (ComponentSampleModel)sm; if (csm.getPixelStride() != csm.getNumBands()) { return false; } int[] bandOffsets = csm.getBandOffsets(); for (int i = 0; i < bandOffsets.length; i++) { if (bandOffsets[i] != i) { return false; } } int[] bankIndices = csm.getBankIndices(); for (int i = 0; i < bandOffsets.length; i++) { if (bankIndices[i] != 0) { return false; } } return true; } // Otherwise true if and only if it's a bilevel image with // a MultiPixelPackedSampleModel, 1 bit per pixel, and 1 bit // pixel stride. return ImageUtil.isBinary(sm); }
Example 16
Source File: ImageUtil.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
/** * Returns whether the image has contiguous data across rows. */ public static final boolean imageIsContiguous(RenderedImage image) { SampleModel sm; if(image instanceof BufferedImage) { WritableRaster ras = ((BufferedImage)image).getRaster(); sm = ras.getSampleModel(); } else { sm = image.getSampleModel(); } if (sm instanceof ComponentSampleModel) { // Ensure image rows samples are stored contiguously // in a single bank. ComponentSampleModel csm = (ComponentSampleModel)sm; if (csm.getPixelStride() != csm.getNumBands()) { return false; } int[] bandOffsets = csm.getBandOffsets(); for (int i = 0; i < bandOffsets.length; i++) { if (bandOffsets[i] != i) { return false; } } int[] bankIndices = csm.getBankIndices(); for (int i = 0; i < bandOffsets.length; i++) { if (bankIndices[i] != 0) { return false; } } return true; } // Otherwise true if and only if it's a bilevel image with // a MultiPixelPackedSampleModel, 1 bit per pixel, and 1 bit // pixel stride. return ImageUtil.isBinary(sm); }
Example 17
Source File: ImageUtil.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
/** * Returns whether the image has contiguous data across rows. */ public static final boolean imageIsContiguous(RenderedImage image) { SampleModel sm; if(image instanceof BufferedImage) { WritableRaster ras = ((BufferedImage)image).getRaster(); sm = ras.getSampleModel(); } else { sm = image.getSampleModel(); } if (sm instanceof ComponentSampleModel) { // Ensure image rows samples are stored contiguously // in a single bank. ComponentSampleModel csm = (ComponentSampleModel)sm; if (csm.getPixelStride() != csm.getNumBands()) { return false; } int[] bandOffsets = csm.getBandOffsets(); for (int i = 0; i < bandOffsets.length; i++) { if (bandOffsets[i] != i) { return false; } } int[] bankIndices = csm.getBankIndices(); for (int i = 0; i < bandOffsets.length; i++) { if (bankIndices[i] != 0) { return false; } } return true; } // Otherwise true if and only if it's a bilevel image with // a MultiPixelPackedSampleModel, 1 bit per pixel, and 1 bit // pixel stride. return ImageUtil.isBinary(sm); }
Example 18
Source File: ImageUtil.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
/** * Returns whether the image has contiguous data across rows. */ public static final boolean imageIsContiguous(RenderedImage image) { SampleModel sm; if(image instanceof BufferedImage) { WritableRaster ras = ((BufferedImage)image).getRaster(); sm = ras.getSampleModel(); } else { sm = image.getSampleModel(); } if (sm instanceof ComponentSampleModel) { // Ensure image rows samples are stored contiguously // in a single bank. ComponentSampleModel csm = (ComponentSampleModel)sm; if (csm.getPixelStride() != csm.getNumBands()) { return false; } int[] bandOffsets = csm.getBandOffsets(); for (int i = 0; i < bandOffsets.length; i++) { if (bandOffsets[i] != i) { return false; } } int[] bankIndices = csm.getBankIndices(); for (int i = 0; i < bandOffsets.length; i++) { if (bankIndices[i] != 0) { return false; } } return true; } // Otherwise true if and only if it's a bilevel image with // a MultiPixelPackedSampleModel, 1 bit per pixel, and 1 bit // pixel stride. return ImageUtil.isBinary(sm); }
Example 19
Source File: ImageUtil.java From jdk1.8-source-analysis with Apache License 2.0 | 4 votes |
/** * Returns whether the image has contiguous data across rows. */ public static final boolean imageIsContiguous(RenderedImage image) { SampleModel sm; if(image instanceof BufferedImage) { WritableRaster ras = ((BufferedImage)image).getRaster(); sm = ras.getSampleModel(); } else { sm = image.getSampleModel(); } if (sm instanceof ComponentSampleModel) { // Ensure image rows samples are stored contiguously // in a single bank. ComponentSampleModel csm = (ComponentSampleModel)sm; if (csm.getPixelStride() != csm.getNumBands()) { return false; } int[] bandOffsets = csm.getBandOffsets(); for (int i = 0; i < bandOffsets.length; i++) { if (bandOffsets[i] != i) { return false; } } int[] bankIndices = csm.getBankIndices(); for (int i = 0; i < bandOffsets.length; i++) { if (bankIndices[i] != 0) { return false; } } return true; } // Otherwise true if and only if it's a bilevel image with // a MultiPixelPackedSampleModel, 1 bit per pixel, and 1 bit // pixel stride. return ImageUtil.isBinary(sm); }
Example 20
Source File: ImageUtil.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
/** * Returns whether the image has contiguous data across rows. */ public static final boolean imageIsContiguous(RenderedImage image) { SampleModel sm; if(image instanceof BufferedImage) { WritableRaster ras = ((BufferedImage)image).getRaster(); sm = ras.getSampleModel(); } else { sm = image.getSampleModel(); } if (sm instanceof ComponentSampleModel) { // Ensure image rows samples are stored contiguously // in a single bank. ComponentSampleModel csm = (ComponentSampleModel)sm; if (csm.getPixelStride() != csm.getNumBands()) { return false; } int[] bandOffsets = csm.getBandOffsets(); for (int i = 0; i < bandOffsets.length; i++) { if (bandOffsets[i] != i) { return false; } } int[] bankIndices = csm.getBankIndices(); for (int i = 0; i < bandOffsets.length; i++) { if (bankIndices[i] != 0) { return false; } } return true; } // Otherwise true if and only if it's a bilevel image with // a MultiPixelPackedSampleModel, 1 bit per pixel, and 1 bit // pixel stride. return ImageUtil.isBinary(sm); }