Opened 11 years ago

Last modified 9 years ago

#11359 closed enhancement

metadata-extractor 2.8.1 is available — at Version 2

Reported by: anonymous Owned by: team
Priority: normal Milestone: 15.04
Component: Core Version:
Keywords: Cc:

Description (last modified by Don-vip)

hi
metadata-extractor 2.8.1 is available
https://github.com/drewnoakes/metadata-extractor/releases/tag/2.8.1

Features:

WebP support
File system metadata
ICO file support
PCX support
Improve Exif tag comprehension across directory types
Support PNG sBIT and pHYs chunks
Extract tEXt and iTXt chunks from PNG
Metadata may now hold multiple instances of a Directory subclass
Improve date/time formatting of EXIF-GPS and IPTC data
Detect new file types: RIFF, PCX, ICO, additional ORF format
Read image resources from Photoshop data
Fix decoding of 8BIM Photoshop strings
Process EXIF, ICC and XMP data embedded in Photoshop data
Extend XMP support
Extend Olympus makernote support

tried to build JOSM (svn revision 8102)

compile:

[javac] Compiling 1219 source files to build
[javac] src/org/openstreetmap/josm/gui/layer/geoimage/GeoImageLayer.java:605: error: cannot find symbol
[javac] dirExif = metadata.getDirectory(ExifIFD0Directory.class);
[javac]
[javac] symbol: method getDirectory(Class<ExifIFD0Directory>)
[javac] location: variable metadata of type Metadata
[javac] src/org/openstreetmap/josm/gui/layer/geoimage/GeoImageLayer.java:606: error: cannot find symbol
[javac] dirGps = metadata.getDirectory(GpsDirectory.class);
[javac]

[javac] symbol: method getDirectory(Class<GpsDirectory>)
[javac] location: variable metadata of type Metadata
[javac] src/org/openstreetmap/josm/tools/ExifReader.java:89: error: cannot find symbol
[javac] final Directory dir = metadata.getDirectory(ExifIFD0Directory.class);
[javac]
[javac] symbol: method getDirectory(Class<ExifIFD0Directory>)
[javac] location: variable metadata of type Metadata
[javac] src/org/openstreetmap/josm/tools/ExifReader.java:106: error: cannot find symbol
[javac] final GpsDirectory dirGps = metadata.getDirectory(GpsDirectory.class);
[javac]

[javac] symbol: method getDirectory(Class<GpsDirectory>)
[javac] location: variable metadata of type Metadata
[javac] src/org/openstreetmap/josm/tools/ExifReader.java:143: error: cannot find symbol
[javac] final GpsDirectory dirGps = metadata.getDirectory(GpsDirectory.class);
[javac]
[javac] symbol: method getDirectory(Class<GpsDirectory>)
[javac] location: variable metadata of type Metadata
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] 5 errors

thanks in advance

Change History (2)

comment:2 by Don-vip, 11 years ago

Description: modified (diff)
Milestone: 15.04
Summary: metadata-extractor 2.8.0 is availablemetadata-extractor 2.8.1 is available
Type: defectenhancement
Note: See TracTickets for help on using tickets.