|
| 1 | +/* |
| 2 | + * Copyright (c) 2003, 2023, 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 | +/* @test |
| 25 | + * @bug 4827074 |
| 26 | + * @summary ImageIcon serialization does not preload restored images |
| 27 | + * @run main bug4827074 |
| 28 | + */ |
| 29 | + |
| 30 | +import javax.swing.ImageIcon; |
| 31 | +import java.awt.Image; |
| 32 | +import java.awt.Panel; |
| 33 | +import java.awt.image.MemoryImageSource; |
| 34 | +import java.io.ByteArrayInputStream; |
| 35 | +import java.io.ByteArrayOutputStream; |
| 36 | +import java.io.ObjectInputStream; |
| 37 | +import java.io.ObjectOutputStream; |
| 38 | + |
| 39 | +public class bug4827074 extends Panel { |
| 40 | + |
| 41 | + static ImageIcon testIcon = null; |
| 42 | + private volatile static boolean passed = false; |
| 43 | + |
| 44 | + public void init() { |
| 45 | + testIcon = new TestImageIcon(); |
| 46 | + ImageIcon icon = saveAndLoad(testIcon); |
| 47 | + |
| 48 | + if (!passed) { |
| 49 | + throw new RuntimeException("Image was not loaded properly"); |
| 50 | + } |
| 51 | + } |
| 52 | + |
| 53 | + synchronized static void setPassed(boolean p) { |
| 54 | + passed = p; |
| 55 | + } |
| 56 | + |
| 57 | + static ImageIcon saveAndLoad(ImageIcon ii) { |
| 58 | + ImageIcon _ii = null; |
| 59 | + try { |
| 60 | + ByteArrayOutputStream baos = new ByteArrayOutputStream(); |
| 61 | + ObjectOutputStream out = new ObjectOutputStream(baos); |
| 62 | + out.writeObject(ii); |
| 63 | + out.flush(); |
| 64 | + ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray()); |
| 65 | + ObjectInputStream in = new ObjectInputStream(bais); |
| 66 | + _ii = (ImageIcon)in.readObject(); |
| 67 | + } catch (Exception ex) { |
| 68 | + ex.printStackTrace(); |
| 69 | + } |
| 70 | + return _ii; |
| 71 | + } |
| 72 | + |
| 73 | + class TestImageIcon extends ImageIcon { |
| 74 | + public TestImageIcon() { |
| 75 | + super(); |
| 76 | + setImage(buildImage()); |
| 77 | + } |
| 78 | + |
| 79 | + private Image buildImage() { |
| 80 | + int w = 32, h = 32; |
| 81 | + float halfW = w / 2 , halfH = h / 2; |
| 82 | + int col = 0xff0000; |
| 83 | + int[] pixels = new int[w * h]; |
| 84 | + for(int y = 0; y < h; y++) { |
| 85 | + for(int x = 0; x < w; x++) { |
| 86 | + float cx = 1f - (float)x / halfW; |
| 87 | + float cy = 1f - (float)y / halfH; |
| 88 | + double ray = Math.sqrt(cx * cx + cy * cy); |
| 89 | + pixels[y * w + x] = ray < 1 ? col | (255 - (int)(ray * 255)) << 24:0; |
| 90 | + } |
| 91 | + } |
| 92 | + MemoryImageSource mis = new MemoryImageSource(w, h, pixels, 0, w); |
| 93 | + Image image = createImage(mis); |
| 94 | + return image; |
| 95 | + } |
| 96 | + |
| 97 | + protected void loadImage(Image image) { |
| 98 | + super.loadImage(image); |
| 99 | + if (testIcon != null && image != testIcon.getImage()) { |
| 100 | + setPassed(true); |
| 101 | + } |
| 102 | + } |
| 103 | + } |
| 104 | + |
| 105 | + public static void main(String[] args) { |
| 106 | + bug4827074 bug = new bug4827074(); |
| 107 | + bug.init(); |
| 108 | + } |
| 109 | +} |
0 commit comments