< prev index next >

src/java.desktop/share/classes/javax/imageio/plugins/tiff/BaselineTIFFTagSet.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


 875      * @see #TAG_SAMPLE_FORMAT
 876      */
 877     public static final int SAMPLE_FORMAT_UNDEFINED = 4;
 878 
 879     /**
 880      * Constant specifying the "SMinSampleValue" tag.
 881      */
 882     public static final int TAG_S_MIN_SAMPLE_VALUE = 340;
 883 
 884     /**
 885      * Constant specifying the "SMaxSampleValue" tag.
 886      */
 887     public static final int TAG_S_MAX_SAMPLE_VALUE = 341;
 888 
 889     /**
 890      * Constant specifying the "TransferRange" tag.
 891      */
 892     public static final int TAG_TRANSFER_RANGE = 342;
 893 
 894     /**
 895      * Constant specifying the "JPEGTables" tag.
 896      *
 897      * @see <a href="ftp://ftp.sgi.com/graphics/tiff/TTN2.draft.txt">JPEG-in-TIFF compression</a>
 898      */
 899     public static final int TAG_JPEG_TABLES = 347;
 900 
 901     /**
 902      * Constant specifying the "JPEGProc" tag.
 903      */
 904     public static final int TAG_JPEG_PROC = 512;
 905 
 906     /**
 907      * A value to be used with the "JPEGProc" tag.
 908      *
 909      * @see #TAG_JPEG_PROC
 910      */
 911     public static final int JPEG_PROC_BASELINE = 1;
 912 
 913     /**
 914      * A value to be used with the "JPEGProc" tag.
 915      *
 916      * @see #TAG_JPEG_PROC
 917      */


   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


 875      * @see #TAG_SAMPLE_FORMAT
 876      */
 877     public static final int SAMPLE_FORMAT_UNDEFINED = 4;
 878 
 879     /**
 880      * Constant specifying the "SMinSampleValue" tag.
 881      */
 882     public static final int TAG_S_MIN_SAMPLE_VALUE = 340;
 883 
 884     /**
 885      * Constant specifying the "SMaxSampleValue" tag.
 886      */
 887     public static final int TAG_S_MAX_SAMPLE_VALUE = 341;
 888 
 889     /**
 890      * Constant specifying the "TransferRange" tag.
 891      */
 892     public static final int TAG_TRANSFER_RANGE = 342;
 893 
 894     /**
 895      * Constant specifying the "JPEGTables" tag for
 896      * "New style" JPEG-in-TIFF compression.

 897      */
 898     public static final int TAG_JPEG_TABLES = 347;
 899 
 900     /**
 901      * Constant specifying the "JPEGProc" tag.
 902      */
 903     public static final int TAG_JPEG_PROC = 512;
 904 
 905     /**
 906      * A value to be used with the "JPEGProc" tag.
 907      *
 908      * @see #TAG_JPEG_PROC
 909      */
 910     public static final int JPEG_PROC_BASELINE = 1;
 911 
 912     /**
 913      * A value to be used with the "JPEGProc" tag.
 914      *
 915      * @see #TAG_JPEG_PROC
 916      */


< prev index next >