< prev index next >

src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/TIFFImageWriteParam.java

Print this page


   1 /*
   2  * Copyright (c) 2005, 2016, 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.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  39  * <td>CCITT RLE</td>
  40  * <td>Modified Huffman compression</td>
  41  * <td>TIFF 6.0 Specification, Section 10</td>
  42  * </tr>
  43  * <tr>
  44  * <td>CCITT T.4</td>
  45  * <td>CCITT T.4 bilevel encoding/Group 3 facsimile compression</td>
  46  * <td>TIFF 6.0 Specification, Section 11</td>
  47  * </tr>
  48  * <tr>
  49  * <td>CCITT T.6</td>
  50  * <td>CCITT T.6 bilevel encoding/Group 4 facsimile compression</td>
  51  * <td>TIFF 6.0 Specification, Section 11</td></tr>
  52  * <tr>
  53  * <td>LZW</td>
  54  * <td>LZW compression</td>
  55  * <td>TIFF 6.0 Specification, Section 13</td></tr>
  56  * <tr>
  57  * <td>JPEG</td>
  58  * <td>"New" JPEG-in-TIFF compression</td>
  59  * <td><a href="ftp://ftp.sgi.com/graphics/tiff/TTN2.draft.txt">TIFF
  60  * Technical Note #2</a></td>
  61  * </tr>
  62  * <tr>
  63  * <td>ZLib</td>
  64  * <td>"Deflate/Inflate" compression (see note following this table)</td>
  65  * </tr>
  66  * <tr>
  67  * <td>PackBits</td>
  68  * <td>Byte-oriented, run length compression</td>
  69  * <td>TIFF 6.0 Specification, Section 9</td>
  70  * </tr>
  71  * <tr>
  72  * <td>Deflate</td>
  73  * <td>"Zip-in-TIFF" compression (see note following this table)</td>
  74  * <td><a href="http://www.isi.edu/in-notes/rfc1950.txt">
  75  * ZLIB Compressed Data Format Specification</a>,
  76  * <a href="http://www.isi.edu/in-notes/rfc1951.txt">
  77  * DEFLATE Compressed Data Format Specification</a></td>
  78  * </tr>
  79  * <tr>
  80  * <td>Exif JPEG</td>


   1 /*
   2  * Copyright (c) 2005, 2018, 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.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  39  * <td>CCITT RLE</td>
  40  * <td>Modified Huffman compression</td>
  41  * <td>TIFF 6.0 Specification, Section 10</td>
  42  * </tr>
  43  * <tr>
  44  * <td>CCITT T.4</td>
  45  * <td>CCITT T.4 bilevel encoding/Group 3 facsimile compression</td>
  46  * <td>TIFF 6.0 Specification, Section 11</td>
  47  * </tr>
  48  * <tr>
  49  * <td>CCITT T.6</td>
  50  * <td>CCITT T.6 bilevel encoding/Group 4 facsimile compression</td>
  51  * <td>TIFF 6.0 Specification, Section 11</td></tr>
  52  * <tr>
  53  * <td>LZW</td>
  54  * <td>LZW compression</td>
  55  * <td>TIFF 6.0 Specification, Section 13</td></tr>
  56  * <tr>
  57  * <td>JPEG</td>
  58  * <td>"New" JPEG-in-TIFF compression</td>


  59  * </tr>
  60  * <tr>
  61  * <td>ZLib</td>
  62  * <td>"Deflate/Inflate" compression (see note following this table)</td>
  63  * </tr>
  64  * <tr>
  65  * <td>PackBits</td>
  66  * <td>Byte-oriented, run length compression</td>
  67  * <td>TIFF 6.0 Specification, Section 9</td>
  68  * </tr>
  69  * <tr>
  70  * <td>Deflate</td>
  71  * <td>"Zip-in-TIFF" compression (see note following this table)</td>
  72  * <td><a href="http://www.isi.edu/in-notes/rfc1950.txt">
  73  * ZLIB Compressed Data Format Specification</a>,
  74  * <a href="http://www.isi.edu/in-notes/rfc1951.txt">
  75  * DEFLATE Compressed Data Format Specification</a></td>
  76  * </tr>
  77  * <tr>
  78  * <td>Exif JPEG</td>


< prev index next >