< prev index next >

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

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2003, 2013, 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. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 2003, 2018, 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. Oracle designates this
*** 28,37 **** --- 28,38 ---- public interface BMPConstants { // bmp versions static final String VERSION_2 = "BMP v. 2.x"; static final String VERSION_3 = "BMP v. 3.x"; static final String VERSION_3_NT = "BMP v. 3.x NT"; + static final String VERSION_3_EXT = "BMP V2/V3 INFO"; static final String VERSION_4 = "BMP v. 4.x"; static final String VERSION_5 = "BMP v. 5.x"; // Color space types static final int LCS_CALIBRATED_RGB = 0;
*** 46,50 **** --- 47,52 ---- static final int BI_RLE4 = 2; static final int BI_BITFIELDS = 3; static final int BI_JPEG = 4; static final int BI_PNG = 5; } +
< prev index next >