--- old/src/java.desktop/share/classes/javax/imageio/plugins/bmp/BMPImageWriteParam.java 2017-09-03 00:46:46.000000000 -0700 +++ new/src/java.desktop/share/classes/javax/imageio/plugins/bmp/BMPImageWriteParam.java 2017-09-03 00:46:46.000000000 -0700 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. + * 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 @@ -54,13 +54,32 @@ * listed in the following * table: * - * - * - * - * - * - * - * + *
Compression Types
Type String Description Image Types
BI_RGB Uncompressed RLE {@literal <= } 8-bits/sample
BI_RLE8 8-bit Run Length Encoding {@literal <=} 8-bits/sample
BI_RLE4 4-bit Run Length Encoding {@literal <=} 4-bits/sample
BI_BITFIELDS Packed data 16 or 32 bits/sample
+ * + * + * + * + * + * + * + * + * + * *
Compression Types
Type String + * Description + * Image Types + *
BI_RGB + * Uncompressed RLE + * {@literal <= } 8-bits/sample + *
BI_RLE8 + * 8-bit Run Length Encoding + * {@literal <=} 8-bits/sample + *
BI_RLE4 + * 4-bit Run Length Encoding + * {@literal <=} 4-bits/sample + *
BI_BITFIELDS + * Packed data + * 16 or 32 bits/sample + *
*/ public class BMPImageWriteParam extends ImageWriteParam {