jdk/src/share/classes/javax/imageio/plugins/bmp/BMPImageWriteParam.java
changeset 22260 c9185e010e03
parent 20415 a88fd521ef00
equal deleted inserted replaced
22259:8e5afc67dca8 22260:c9185e010e03
     1 /*
     1 /*
     2  * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    52  * of the color resolution.
    52  * of the color resolution.
    53  * <p>The compression type strings and the image type(s) each supports are
    53  * <p>The compression type strings and the image type(s) each supports are
    54  * listed in the following
    54  * listed in the following
    55  * table:
    55  * table:
    56  *
    56  *
    57  * <p><table border=1>
    57  * <table border=1>
    58  * <caption><b>Compression Types</b></caption>
    58  * <caption><b>Compression Types</b></caption>
    59  * <tr><th>Type String</th> <th>Description</th>  <th>Image Types</th></tr>
    59  * <tr><th>Type String</th> <th>Description</th>  <th>Image Types</th></tr>
    60  * <tr><td>BI_RGB</td>  <td>Uncompressed RLE</td> <td>{@literal <= } 8-bits/sample</td></tr>
    60  * <tr><td>BI_RGB</td>  <td>Uncompressed RLE</td> <td>{@literal <= } 8-bits/sample</td></tr>
    61  * <tr><td>BI_RLE8</td> <td>8-bit Run Length Encoding</td> <td>{@literal <=} 8-bits/sample</td></tr>
    61  * <tr><td>BI_RLE8</td> <td>8-bit Run Length Encoding</td> <td>{@literal <=} 8-bits/sample</td></tr>
    62  * <tr><td>BI_RLE4</td> <td>4-bit Run Length Encoding</td> <td>{@literal <=} 4-bits/sample</td></tr>
    62  * <tr><td>BI_RLE4</td> <td>4-bit Run Length Encoding</td> <td>{@literal <=} 4-bits/sample</td></tr>