-
Bug
-
Resolution: Fixed
-
P2
-
6, 7
-
b114
-
generic
-
generic
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2185279 | 6-pool | Unassigned | P4 | Closed | Won't Fix |
Methods:
SampleModel.getSamples(int x, int y, int w, int h, int b, float fArray[], DataBuffer data)
SampleModel.getSamples(int x, int y, int w, int h, int b, double dArray[], DataBuffer data)
/**
* @throws ArrayIndexOutOfBoundsException if the coordinates or
* the band index are not in bounds, or if fArray is too small to
* hold the output.
*/
Extract from the tests:
-----
import java.awt.image.*;
public class Sample {
public static void main(String[] args) {
int defaultWidth = 6;
int defaultHeight = 4;
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()];
double[] dArray = new double[defaultWidth * defaultHeight * model.getNumBands()];
model.getSamples(Integer.MAX_VALUE, 0, 1, 1, 0, fArray, data);
model.getSamples(0, Integer.MAX_VALUE, 1, 1, 0, fArray, data);
model.getSamples(Integer.MAX_VALUE, 0, 1, 1, 0, dArray, data);
model.getSamples(0, Integer.MAX_VALUE, 1, 1, 0, dArray, data);
}
}
-----
JCK-runtime-7 b03
JDK 7 b30
Solaris 10 amd (jck)
http://moonblade.russia.sun.com/set/java/jck/qa-results/jck/7/ea/b03/results/qac/m002_b30_failed_c1/solaris-amd64-080723150835/execdata/jtwork/report/filtered/newFailedTestCases.html
The following tests fail:
api/java_awt/Image/SampleModel/index.html#GetsetSamples[getsetSamples0009]
api/java_awt/Image/SampleModel/index.html#GetsetSamples[getsetSamples0008]
- backported by
-
JDK-2185279 java.awt.image.SampleModel.getSamples() methods not allways throw ArrayIndexOutOfBoundsException
-
- Closed
-
- relates to
-
JDK-6773022 java.awt.image.SampleModel.getDataElements() does't throw ArrayIndexOutOfBoundsEx for Integer.MAX_V
-
- Closed
-
-
JDK-6773586 java.awt.image.SampleModel.getPixels() methods not allways throw ArrayIndexOutOfBoundsException
-
- Closed
-
-
JDK-6993561 java.awt.image.SampleModel.setSamples() methods not always throw ArrayIndexOutOfBoundsException
-
- Closed
-
-
JDK-6736178 java.awt.image.SampleModel constructor unexpectedly throws IllegalArgumentException
-
- Closed
-