-
Bug
-
Resolution: Fixed
-
P2
-
1.2.2, 6, 7
-
b138
-
generic
-
generic
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2185284 | 6-pool | Unassigned | P4 | Closed | Won't Fix |
Methods
public double[] getPixels(int x, int y, int w, int h, double dArray[], DataBuffer data)
public float[] getPixels(int x, int y, int w, int h, float fArray[], DataBuffer data)
declare:
/**
* @throws ArrayIndexOutOfBoundsException if the coordinates are
* not in bounds, or if dArray is too small to hold the output.
*/
This statement is not always satisfied. Please see the following code sample that illustrates not throwing ArrayIndexOutOfBoundsException from getPixels() methods.
-----
import java.awt.image.*;
public class Sample {
public static void main(String[] args) {
int defaultWidth = 10;
int defaultHeight = 10;
SampleModel model = Raster.createBandedRaster(DataBuffer.TYPE_INT, defaultWidth, defaultHeight, 4, null).getSampleModel();
DataBuffer data = model.createDataBuffer();
int numElements = defaultWidth * defaultHeight * model.getNumBands();
int[] a = new int[numElements];
for (int j = 0; j < numElements; j++) {
a[j] = j;
}
model.setPixels(0, 0, defaultWidth, defaultHeight, a, data);
float[] fArray = new float[defaultWidth * defaultHeight * model.getNumBands()];
/**
* @throws ArrayIndexOutOfBoundsException if the coordinates are
* not in bounds, or if fArray is too small to hold the output.
*/
model.getPixels(Integer.MAX_VALUE, 0, 1, 1, fArray, data);
model.getPixels(0, Integer.MAX_VALUE, 1, 1, fArray, data);
double[] dArray = new double[defaultWidth * defaultHeight * model.getNumBands()];
/**
* @throws ArrayIndexOutOfBoundsException if the coordinates are
* not in bounds, or if dArray is too small to hold the output.
*/
model.getPixels(Integer.MAX_VALUE, 0, 1, 1, dArray, data);
model.getPixels(0, Integer.MAX_VALUE, 1, 1, dArray, data);
}
}
-----
This problem leads to failing JCK tests:
api/java_awt/Image/SampleModel/index.html#GetsetPixels[getsetPixels0009]
api/java_awt/Image/SampleModel/index.html#GetsetPixels[getsetPixels0008]
JDK 6,7
Platforms: Solaris, Windows
public double[] getPixels(int x, int y, int w, int h, double dArray[], DataBuffer data)
public float[] getPixels(int x, int y, int w, int h, float fArray[], DataBuffer data)
declare:
/**
* @throws ArrayIndexOutOfBoundsException if the coordinates are
* not in bounds, or if dArray is too small to hold the output.
*/
This statement is not always satisfied. Please see the following code sample that illustrates not throwing ArrayIndexOutOfBoundsException from getPixels() methods.
-----
import java.awt.image.*;
public class Sample {
public static void main(String[] args) {
int defaultWidth = 10;
int defaultHeight = 10;
SampleModel model = Raster.createBandedRaster(DataBuffer.TYPE_INT, defaultWidth, defaultHeight, 4, null).getSampleModel();
DataBuffer data = model.createDataBuffer();
int numElements = defaultWidth * defaultHeight * model.getNumBands();
int[] a = new int[numElements];
for (int j = 0; j < numElements; j++) {
a[j] = j;
}
model.setPixels(0, 0, defaultWidth, defaultHeight, a, data);
float[] fArray = new float[defaultWidth * defaultHeight * model.getNumBands()];
/**
* @throws ArrayIndexOutOfBoundsException if the coordinates are
* not in bounds, or if fArray is too small to hold the output.
*/
model.getPixels(Integer.MAX_VALUE, 0, 1, 1, fArray, data);
model.getPixels(0, Integer.MAX_VALUE, 1, 1, fArray, data);
double[] dArray = new double[defaultWidth * defaultHeight * model.getNumBands()];
/**
* @throws ArrayIndexOutOfBoundsException if the coordinates are
* not in bounds, or if dArray is too small to hold the output.
*/
model.getPixels(Integer.MAX_VALUE, 0, 1, 1, dArray, data);
model.getPixels(0, Integer.MAX_VALUE, 1, 1, dArray, data);
}
}
-----
This problem leads to failing JCK tests:
api/java_awt/Image/SampleModel/index.html#GetsetPixels[getsetPixels0009]
api/java_awt/Image/SampleModel/index.html#GetsetPixels[getsetPixels0008]
JDK 6,7
Platforms: Solaris, Windows
- backported by
-
JDK-2185284 java.awt.image.SampleModel.getPixels() methods not allways throw ArrayIndexOutOfBoundsException
-
- Closed
-
- relates to
-
JDK-6735275 java.awt.image.SampleModel.getSamples() methods not allways throw ArrayIndexOutOfBoundsException
-
- Closed
-
-
JDK-6993561 java.awt.image.SampleModel.setSamples() methods not always throw ArrayIndexOutOfBoundsException
-
- Closed
-