Changeset 10862 in josm for trunk/src/com/drew/metadata/exif/ExifThumbnailDirectory.java
- Timestamp:
- 2016-08-20T20:58:03+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/drew/metadata/exif/ExifThumbnailDirectory.java
r8243 r10862 1 1 /* 2 * Copyright 2002-201 5Drew Noakes2 * Copyright 2002-2016 Drew Noakes 3 3 * 4 4 * Licensed under the Apache License, Version 2.0 (the "License"); … … 22 22 package com.drew.metadata.exif; 23 23 24 import java.io.FileOutputStream; 25 import java.io.IOException; 26 import java.util.HashMap; 27 24 28 import com.drew.lang.annotations.NotNull; 25 29 import com.drew.lang.annotations.Nullable; 26 30 import com.drew.metadata.MetadataException; 27 28 import java.io.FileOutputStream;29 import java.io.IOException;30 import java.util.HashMap;31 31 32 32 /** … … 46 46 public static final int TAG_THUMBNAIL_LENGTH = 0x0202; 47 47 48 /**49 * Shows compression method for Thumbnail.50 * 1 = Uncompressed51 * 2 = CCITT 1D52 * 3 = T4/Group 3 Fax53 * 4 = T6/Group 4 Fax54 * 5 = LZW55 * 6 = JPEG (old-style)56 * 7 = JPEG57 * 8 = Adobe Deflate58 * 9 = JBIG B&W59 * 10 = JBIG Color60 * 32766 = Next61 * 32771 = CCIRLEW62 * 32773 = PackBits63 * 32809 = Thunderscan64 * 32895 = IT8CTPAD65 * 32896 = IT8LW66 * 32897 = IT8MP67 * 32898 = IT8BL68 * 32908 = PixarFilm69 * 32909 = PixarLog70 * 32946 = Deflate71 * 32947 = DCS72 * 34661 = JBIG73 * 34676 = SGILog74 * 34677 = SGILog2475 * 34712 = JPEG 200076 * 34713 = Nikon NEF Compressed77 */78 public static final int TAG_THUMBNAIL_COMPRESSION = 0x0103;79 80 48 @NotNull 81 49 protected static final HashMap<Integer, String> _tagNameMap = new HashMap<Integer, String>(); … … 85 53 addExifTagNames(_tagNameMap); 86 54 87 _tagNameMap.put(TAG_THUMBNAIL_COMPRESSION, "Thumbnail Compression");88 55 _tagNameMap.put(TAG_THUMBNAIL_OFFSET, "Thumbnail Offset"); 89 56 _tagNameMap.put(TAG_THUMBNAIL_LENGTH, "Thumbnail Length");
Note:
See TracChangeset
for help on using the changeset viewer.
