Skip to content

Commit 6029120

Browse files
jayathirthraoMasanori Yano
and
Masanori Yano
committedOct 6, 2022
8278086: [REDO] ImageIO.write() method will throw IndexOutOfBoundsException
Co-authored-by: Masanori Yano <myano@openjdk.org> Reviewed-by: tr, prr
1 parent 8f56115 commit 6029120

File tree

2 files changed

+92
-4
lines changed

2 files changed

+92
-4
lines changed
 

‎src/java.desktop/share/classes/com/sun/imageio/plugins/bmp/BMPImageWriter.java

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2003, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2003, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -324,8 +324,11 @@ public void write(IIOMetadata streamMetadata,
324324
}
325325

326326
if (!canEncodeImage(compressionType, colorModel, sampleModel)) {
327-
throw new IOException("Image can not be encoded with compression type "
328-
+ BMPCompressionTypes.getName(compressionType));
327+
throw new
328+
IOException("Image can not be encoded with compression type "
329+
+ BMPCompressionTypes.getName(compressionType)
330+
+ " and " + colorModel.getPixelSize()
331+
+ " bits per pixel");
329332
}
330333

331334
byte[] r = null, g = null, b = null, a = null;
@@ -1452,8 +1455,11 @@ protected boolean canEncodeImage(int compression, ImageTypeSpecifier imgType) {
14521455
if (!spi.canEncodeImage(imgType)) {
14531456
return false;
14541457
}
1455-
int biType = imgType.getBufferedImageType();
14561458
int bpp = imgType.getColorModel().getPixelSize();
1459+
if (bpp != 0 && bpp != 1 && bpp != 4 && bpp != 8 &&
1460+
bpp != 15 && bpp != 16 && bpp != 24 && bpp != 32) {
1461+
return false;
1462+
}
14571463
if (compressionType == BI_RLE4 && bpp != 4) {
14581464
// only 4bpp images can be encoded as BI_RLE4
14591465
return false;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
/*
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8278086
27+
* @summary Tests that writing invalid bits per pixel image in BMP
28+
throws IOException
29+
*/
30+
31+
import java.awt.image.BufferedImage;
32+
import java.awt.image.IndexColorModel;
33+
import java.io.File;
34+
import java.io.IOException;
35+
import javax.imageio.ImageIO;
36+
37+
public class BMPBitsPerPixelTest {
38+
39+
public static void main(String[] args) {
40+
test(1, false);
41+
test(2, true);
42+
test(3, true);
43+
test(4, false);
44+
test(5, true);
45+
test(6, true);
46+
test(7, true);
47+
test(8, false);
48+
}
49+
50+
public static void test(int bpp, boolean shouldThrowException) {
51+
int palettes = (int)Math.pow(2, bpp);
52+
byte[] r = new byte[palettes];
53+
byte[] g = new byte[palettes];
54+
byte[] b = new byte[palettes];
55+
boolean exceptionThrown = false;
56+
try {
57+
IndexColorModel cm = new IndexColorModel(bpp, palettes, r, g, b);
58+
int imageType = BufferedImage.TYPE_BYTE_BINARY;
59+
if (bpp > 4) {
60+
imageType = BufferedImage.TYPE_BYTE_INDEXED;
61+
}
62+
BufferedImage img = new
63+
BufferedImage(10, 10, imageType, (IndexColorModel)cm);
64+
File file = File.createTempFile("test", ".bmp", new File("."));
65+
file.deleteOnExit();
66+
ImageIO.write(img, "BMP", file);
67+
} catch (IOException e) {
68+
exceptionThrown = true;
69+
} catch (Exception e) {
70+
e.printStackTrace();
71+
throw new RuntimeException("Unexpected exception: " + e);
72+
}
73+
74+
if (shouldThrowException && !exceptionThrown) {
75+
throw new RuntimeException("IOException was not caught.");
76+
} else if (!shouldThrowException && exceptionThrown) {
77+
throw new RuntimeException("IOException should not be thrown.");
78+
} else {
79+
System.out.println("Test PASSED.");
80+
}
81+
}
82+
}

0 commit comments

Comments
 (0)
Please sign in to comment.