< prev index next >

src/java.desktop/share/classes/javax/imageio/plugins/tiff/BaselineTIFFTagSet.java

Print this page

        

*** 54,64 **** * </ul> * </li> * </ul> * * @since 9 - * @see <a href="http://partners.adobe.com/public/developer/en/tiff/TIFF6.pdf"> TIFF 6.0 Specification</a> */ public final class BaselineTIFFTagSet extends TIFFTagSet { private static BaselineTIFFTagSet theInstance = null; --- 54,63 ----
*** 199,217 **** /** * A value to be used with the "Compression" tag. * * @see #TAG_COMPRESSION - * @see <a href="http://partners.adobe.com/public/developer/en/tiff/TIFFphotoshop.pdf">TIFF Specification Supplement 2</a> */ public static final int COMPRESSION_JPEG = 7; /** * A value to be used with the "Compression" tag. * * @see #TAG_COMPRESSION - * @see <a href="http://partners.adobe.com/public/developer/en/tiff/TIFFphotoshop.pdf"> TIFF Specification Supplement 2</a> */ public static final int COMPRESSION_ZLIB = 8; /** * A value to be used with the "Compression" tag. --- 198,214 ----
*** 223,233 **** /** * A value to be used with the "Compression" tag. * * @see #TAG_COMPRESSION * @see <a href="https://tools.ietf.org/html/rfc1951">DEFLATE specification</a> - * @see <a href="http://partners.adobe.com/public/developer/en/tiff/TIFFphotoshop.pdf"> TIFF Specification Supplement 2</a> */ public static final int COMPRESSION_DEFLATE = 32946; /** * Constant specifying the "PhotometricInterpretation" tag. --- 220,229 ----
*** 301,311 **** /** * A value to be used with the "PhotometricInterpretation" tag. * * @see #TAG_PHOTOMETRIC_INTERPRETATION - * @see <a href="http://partners.adobe.com/public/developer/en/tiff/TIFFPM6.pdf">TIFF Specification Supplement 1</a> */ public static final int PHOTOMETRIC_INTERPRETATION_ICCLAB = 9; /** * Constant specifying the "Threshholding" tag. --- 297,306 ----
*** 896,906 **** public static final int TAG_TRANSFER_RANGE = 342; /** * Constant specifying the "JPEGTables" tag. * - * @see <a href="http://partners.adobe.com/public/developer/en/tiff/TIFFphotoshop.pdf">TIFF Specification Supplement 2</a> * @see <a href="ftp://ftp.sgi.com/graphics/tiff/TTN2.draft.txt">JPEG-in-TIFF compression</a> */ public static final int TAG_JPEG_TABLES = 347; /** --- 891,900 ----
< prev index next >