Searched defs:sourceBands (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/imageio/
H A DIIOParam.java93 protected int[] sourceBands = null; field in class:IIOParam
413 * @param sourceBands an array of integer band indices to be
416 * @exception IllegalArgumentException if <code>sourceBands</code>
423 public void setSourceBands(int[] sourceBands) { argument
424 if (sourceBands == null) {
425 this.sourceBands = null;
427 int numBands = sourceBands.length;
429 int band = sourceBands[i];
434 if (band == sourceBands[j]) {
440 this.sourceBands
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageWriter.java289 int[] sourceBands = null; field in class:PNGImageWriter
819 if (sourceBands != null) {
821 sourceBands);
1043 this.sourceBands = null;
1077 sourceBands = sBands;
1078 numBands = sourceBands.length;
H A DPNGImageReader.java181 int[] sourceBands = null; field in class:PNGImageReader
1022 if (sourceBands != null) {
1026 sourceBands);
1239 sourceBands = null;
1253 sourceBands = param.getSourceBands();
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageReader.java159 private int[] sourceBands, destBands; field in class:BMPImageReader
722 sourceBands = param.getSourceBands();
725 seleBand = (sourceBands != null) && (destBands != null);
731 sourceBands = new int[numBands];
734 destBands[i] = sourceBands[i] = i;
751 sampleModel = sampleModel.createSubsetSampleModel(sourceBands);
1226 bdata[n + destBands[b]] = buf[m + sourceBands[b]];

Completed in 52 milliseconds