File: BMPCompressionTest.java

package info (click to toggle)
openjdk-11 11.0.4%2B11-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 757,028 kB
  • sloc: java: 5,016,041; xml: 1,191,974; cpp: 934,731; ansic: 555,697; sh: 24,299; objc: 12,703; python: 3,602; asm: 3,415; makefile: 2,772; awk: 351; sed: 172; perl: 114; jsp: 24; csh: 3
file content (433 lines) | stat: -rw-r--r-- 16,272 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
/*
 * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

/*
 * @test
 * @bug 4641872
 * @summary Tests writing compression modes of BMP plugin
 * @modules java.desktop/com.sun.imageio.plugins.bmp
 */

import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Transparency;
import java.awt.color.ColorSpace;
import java.awt.image.BufferedImage;
import java.awt.image.ColorModel;
import java.awt.image.ComponentColorModel;
import java.awt.image.DataBuffer;
import java.awt.image.DirectColorModel;
import java.awt.image.IndexColorModel;
import java.awt.image.PixelInterleavedSampleModel;
import java.awt.image.Raster;
import java.awt.image.SampleModel;
import java.awt.image.SinglePixelPackedSampleModel;
import java.awt.image.WritableRaster;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Arrays;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;

import javax.imageio.IIOImage;
import javax.imageio.ImageIO;
import javax.imageio.ImageReader;
import javax.imageio.ImageTypeSpecifier;
import javax.imageio.ImageWriteParam;
import javax.imageio.ImageWriter;
import javax.imageio.metadata.IIOMetadata;
import javax.imageio.plugins.bmp.BMPImageWriteParam;
import javax.imageio.stream.ImageOutputStream;
import javax.swing.JComponent;
import javax.swing.JFrame;

import com.sun.imageio.plugins.bmp.BMPMetadata;

public class BMPCompressionTest {

    static final String format = "BMP";

    public static void main(String[] args) {

        ImageWriter iw = null;
        Iterator writers = ImageIO.getImageWritersByFormatName(format);
        if (!writers.hasNext()) {
            throw new RuntimeException("No available Image writer for "+format);
        }
        iw = (ImageWriter)writers.next();


        Iterator tests = Test.createTestSet(iw);

        while(tests.hasNext()) {

            Test t = (Test)tests.next();
            System.out.println(t.getDescription());
            t.doTest();
        }

    }


    static class Test {
        static ImageWriter iw;
        private BufferedImage img;
        private String description;
        private BMPImageWriteParam param;
        private IIOMetadata meta;


        public static Iterator createTestSet(ImageWriter w) {
            List l = new LinkedList();

            Test.iw = w;

            // variate compression types
            BMPImageWriteParam param = (BMPImageWriteParam)iw.getDefaultWriteParam();
            param.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
            param.setCompressionType("BI_RGB");
            if (param.canWriteCompressed()) {
                String[] cTypes = param.getCompressionTypes();
                String[] cDescr = param.getCompressionQualityDescriptions();
                float[] cValues = param.getCompressionQualityValues();

                if (cDescr == null) {
                    System.out.println("There are no compression quality description!");
                } else {
                    for(int i=0; i<cDescr.length; i++) {
                        System.out.println("Quality[" + i + "]=\""+cDescr[i]+"\"");
                    }
                }
                if (cValues == null) {
                    System.out.println("There are no compression quality values!");
                } else {
                    for(int i=0; i<cValues.length; i++) {
                        System.out.println("Value["+i+"]=\""+cValues[i]+"\"");
                    }
                }

                for(int i=0; i<cTypes.length; i++) {
                    String compressionType = cTypes[i];
                    BufferedImage img = null;

                    int type = BufferedImage.TYPE_INT_BGR;
                    try {
                        img = createTestImage(type);
                        if (compressionType.equals("BI_RLE8")) {
                            img = createTestImage2(8, DataBuffer.TYPE_BYTE);
                        } else if (compressionType.equals("BI_RLE4")) {
                            img = createTestImage3(4, DataBuffer.TYPE_BYTE);
                        } else if (compressionType.equals("BI_BITFIELDS")) {
                            img = createTestImage4(32);
                        }

                    } catch (IOException ex) {
                        throw new RuntimeException("Unable to create test image");
                    }
                    BMPImageWriteParam p = (BMPImageWriteParam)iw.getDefaultWriteParam();
                    System.out.println("Current compression type is \""+cTypes[i]+"\"");
                    p.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
                    p.setCompressionType(compressionType);

                    IIOMetadata md = iw.getDefaultImageMetadata(new ImageTypeSpecifier(img), p);

                    l.add( new Test(p, md, img));
                }
            }
            //     }
            return l.iterator();

        }

        private Test(BMPImageWriteParam p, IIOMetadata md, BufferedImage i) {
            param = p;
            meta = md;
            img = i;


            description = "Compression type is " + p.getCompressionType();
        }

        public String getDescription() {
            return description;
        }

        public void doTest() {
            try {
                System.out.println(this.getDescription());
                if (param.getCompressionMode() != ImageWriteParam.MODE_EXPLICIT) {
                    System.out.println("Warning: compression mode is not MODE_EXPLICIT");
                }
                // change metadata according to ImageWriteParam
                IIOMetadata new_meta = iw.convertImageMetadata(meta, new ImageTypeSpecifier(img), param);

                IIOImage iio_img = new IIOImage(img, null, new_meta);

                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                ImageOutputStream ios = ImageIO.createImageOutputStream(baos);
                iw.setOutput(ios);
                System.out.print("write image...");
                System.out.println("Current compression Type is \""+param.getCompressionType()+"\"");
                iw.write(new_meta, iio_img, param);
                //iw.write(iio_img);
                System.out.println("OK");
                System.out.print("read image ... ");
                ios.flush();

                byte[] ba_image = baos.toByteArray();

                System.out.println("Array length=" + ba_image.length);
                FileOutputStream fos = new FileOutputStream(new File(param.getCompressionType()+".bmp"));
                fos.write(ba_image);
                fos.flush();
                fos = null;
                ByteArrayInputStream bais = new ByteArrayInputStream(ba_image);

                ImageReader ir = ImageIO.getImageReader(iw);
                ir.setInput(ImageIO.createImageInputStream(bais));

                BufferedImage res = ir.read(0);
                System.out.println("OK");

                if (!param.getCompressionType().equals("BI_JPEG")) {
                    System.out.print("compare images ... ");
                    boolean r = compare(img,res);
                    System.out.println(r?"OK":"FAILED");
                    if (!r) {
                        throw new RuntimeException("Compared images are not equals. Test failed.");
                    }
                }


                BMPMetadata mdata = (BMPMetadata)ir.getImageMetadata(0);

                if (!param.getCompressionType().equals(param.getCompressionTypes()[mdata.compression])) {
                    throw new RuntimeException("Different compression value");
                }

            } catch (Exception ex) {
                ex.printStackTrace();
                throw new RuntimeException("Unexpected exception: " + ex);
            }

        }

        private boolean compare(final BufferedImage in, final BufferedImage out) {

            final int width = in.getWidth();
            int height = in.getHeight();
            if (out.getWidth() != width || out.getHeight() != height) {
                throw new RuntimeException("Dimensions changed!");
            }

            Raster oldras = in.getRaster();
            ColorModel oldcm = in.getColorModel();
            Raster newras = out.getRaster();
            ColorModel newcm = out.getColorModel();

            for (int j = 0; j < height; j++) {
                for (int i = 0; i < width; i++) {
                    Object oldpixel = oldras.getDataElements(i, j, null);
                    int oldrgb = oldcm.getRGB(oldpixel);
                    int oldalpha = oldcm.getAlpha(oldpixel);

                    Object newpixel = newras.getDataElements(i, j, null);
                    int newrgb = newcm.getRGB(newpixel);
                    int newalpha = newcm.getAlpha(newpixel);

                    if (newrgb != oldrgb ||
                        newalpha != oldalpha) {
                        // showDiff(in, out);
                        throw new RuntimeException("Pixels differ at " + i +
                                                   ", " + j + " new = " + Integer.toHexString(newrgb) + " old = " + Integer.toHexString(oldrgb));
                    }
                }
            }
            return true;
        }

        private static BufferedImage createTestImage2(int nbits, int transfertype) {
            final int colorShift = 2;
            int SIZE = 256;
            BufferedImage image = null;

            ColorSpace colorSpace =
                ColorSpace.getInstance(ColorSpace.CS_GRAY);
            ColorModel colorModel =
                new ComponentColorModel(colorSpace,
                                        new int[] {nbits},
                                        false,
                                        false,
                                        Transparency.OPAQUE,
                                        transfertype);

            SampleModel sampleModel =
                new PixelInterleavedSampleModel(transfertype,
                                                SIZE,
                                                SIZE,
                                                1,
                                                SIZE,
                                                new int[] {0});

            image =
                new BufferedImage(colorModel,
                                  Raster.createWritableRaster(sampleModel, null),
                                  false, null);
            WritableRaster raster = image.getWritableTile(0, 0);
            int[] samples = raster.getSamples(0, 0, SIZE, SIZE, 0, (int[])null);
            int off = 0;
            int[] row = new int[SIZE];
            for(int i = 0; i < SIZE; i++) {
                Arrays.fill(row, i << colorShift);
                System.arraycopy(row, 0, samples, off, SIZE);
                off += SIZE;
            }
            raster.setSamples(0, 0, SIZE, SIZE, 0, samples);

            return image;
        }


        private static BufferedImage createTestImage3(int nbits, int transfertype) {
            final int colorShift = 2;
            int SIZE = 256;
            BufferedImage image = null;

            ColorSpace colorSpace =
                ColorSpace.getInstance(ColorSpace.CS_sRGB);
            ColorModel colorModel =
                new IndexColorModel(nbits,
                                    4,
                                    new byte[] { (byte)255,   0,   0, (byte)255},
                                    new byte[] {   0, (byte)255,   0, (byte)255},
                                    new byte[] {   0,   0, (byte)255, (byte)255});

            SampleModel sampleModel =
                new PixelInterleavedSampleModel(transfertype,
                                                SIZE,
                                                SIZE,
                                                1,
                                                SIZE,
                                                new int[] {0});

            image =
                new BufferedImage(colorModel,
                                  Raster.createWritableRaster(sampleModel, null),

                                  false, null);

            Graphics2D g = image.createGraphics();
            g.setColor(Color.white);
            g.fillRect(0,0, SIZE, SIZE);
            g.setColor(Color.red);
            g.fillOval(10, 10, SIZE -20, SIZE-20);

            return image;
        }

        private static BufferedImage createTestImage4(int nbits) {
            int SIZE = 10;


            BufferedImage image = null;

            ColorSpace colorSpace =
                ColorSpace.getInstance(ColorSpace.CS_sRGB);
            ColorModel colorModel =
                new DirectColorModel(colorSpace,
                                     nbits, 0xff0000, 0x00ff00, 0x0000ff, 0x000000, false, DataBuffer.TYPE_INT);

            SampleModel sampleModel =
                new SinglePixelPackedSampleModel(DataBuffer.TYPE_INT,
                                                SIZE,
                                                SIZE,
                                      new int[] { 0xff0000, 0x00ff00, 0x0000ff} );


            image =
                new BufferedImage(colorModel,
                                  Raster.createWritableRaster(sampleModel, null),

                                  false, null);

            Graphics2D g = image.createGraphics();
            g.setColor(Color.red);
            g.fillRect(0,0, SIZE, SIZE);
            g.setColor(Color.green);
            //g.fillOval(10, 10, SIZE -20, SIZE-20);
            g.drawLine(7, 0, 7, SIZE);
            g.setColor(Color.blue);
            g.drawLine(1, 0, 1, SIZE);
            g.setColor(Color.white);
            g.drawLine(3, 0, 3, SIZE);
            g.setColor(Color.yellow);
            g.drawLine(5, 0, 5, SIZE);
            return image;
        }

        private static BufferedImage createTestImage(int type)
          throws IOException {

            int w = 200;
            int h = 200;
            BufferedImage b = new BufferedImage(w, h, type);
            Graphics2D g = b.createGraphics();
            g.setColor(Color.white);
            g.fillRect(0,0, w, h);
            g.setColor(Color.black);
            g.fillOval(10, 10, w -20, h-20);

            return b;
        }


    }

    private static void showDiff(final BufferedImage in,
                                 final BufferedImage out) {
        final int width = in.getWidth();
        final int height = in.getHeight();

        JFrame f = new JFrame("");
        f.getContentPane().add( new JComponent() {
                public Dimension getPreferredSize() {
                    return new Dimension(2*width+2, height);
                }
                public void paintComponent(Graphics g) {
                    g.setColor(Color.black);
                    g.drawImage(in, 0,0, null);

                    g.drawImage(out, width+2, 0, null);
                }
            });
        f.pack();
        f.setVisible(true);
    }

}