Changeset 8132 in josm for trunk/src/com/drew/metadata/exif/ExifIFD0Directory.java
- Timestamp:
- 2015-03-10T01:17:39+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/drew/metadata/exif/ExifIFD0Directory.java
r6127 r8132 1 1 /* 2 * Copyright 2002-201 2Drew Noakes2 * Copyright 2002-2015 Drew Noakes 3 3 * 4 4 * Licensed under the Apache License, Version 2.0 (the "License"); … … 16 16 * More information about this project is available at: 17 17 * 18 * http://drewnoakes.com/code/exif/ 19 * http ://code.google.com/p/metadata-extractor/18 * https://drewnoakes.com/code/exif/ 19 * https://github.com/drewnoakes/metadata-extractor 20 20 */ 21 21 … … 30 30 * Describes Exif tags from the IFD0 directory. 31 31 * 32 * @author Drew Noakes http://drewnoakes.com 32 * @author Drew Noakes https://drewnoakes.com 33 33 */ 34 34 public class ExifIFD0Directory extends Directory … … 46 46 public static final int TAG_WHITE_POINT = 0x013E; 47 47 public static final int TAG_PRIMARY_CHROMATICITIES = 0x013F; 48 48 49 public static final int TAG_YCBCR_COEFFICIENTS = 0x0211; 49 50 public static final int TAG_YCBCR_POSITIONING = 0x0213; 50 51 public static final int TAG_REFERENCE_BLACK_WHITE = 0x0214; 52 53 54 /** This tag is a pointer to the Exif SubIFD. */ 55 public static final int TAG_EXIF_SUB_IFD_OFFSET = 0x8769; 56 57 /** This tag is a pointer to the Exif GPS IFD. */ 58 public static final int TAG_GPS_INFO_OFFSET = 0x8825; 59 51 60 public static final int TAG_COPYRIGHT = 0x8298; 61 62 /** Non-standard, but in use. */ 63 public static final int TAG_TIME_ZONE_OFFSET = 0x882a; 52 64 53 65 /** The image title, as used by Windows XP. */ … … 82 94 _tagNameMap.put(TAG_YCBCR_POSITIONING, "YCbCr Positioning"); 83 95 _tagNameMap.put(TAG_REFERENCE_BLACK_WHITE, "Reference Black/White"); 96 84 97 _tagNameMap.put(TAG_COPYRIGHT, "Copyright"); 98 99 _tagNameMap.put(TAG_TIME_ZONE_OFFSET, "Time Zone Offset"); 85 100 86 101 _tagNameMap.put(TAG_WIN_AUTHOR, "Windows XP Author"); … … 96 111 } 97 112 113 @Override 98 114 @NotNull 99 115 public String getName() … … 102 118 } 103 119 120 @Override 104 121 @NotNull 105 122 protected HashMap<Integer, String> getTagNameMap()
Note:
See TracChangeset
for help on using the changeset viewer.
