组织ID: |
com.drewnoakes |
项目ID: |
metadata-extractor |
版本: |
2.9.0 |
最后修改时间: |
2018-08-06 08:48:33 |
包类型: |
jar |
标题: |
${project.groupId}:${project.artifactId} |
描述: |
Java library for extracting EXIF, IPTC, XMP, ICC and other metadata from image files. |
相关URL: |
https://drewnoakes.com/code/exif/ |
大小: |
368.34KB |
|
Maven引入代码: |
<dependency>
<groupId>com.drewnoakes</groupId>
<artifactId>metadata-extractor</artifactId>
<version>2.9.0</version>
</dependency>
|
Gradle引入代码: |
com.drewnoakes:metadata-extractor:2.9.0
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.drewnoakes</groupId>
<artifactId>metadata-extractor</artifactId>
<version>2.9.0</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>Java library for extracting EXIF, IPTC, XMP, ICC and other metadata from image files.</description>
<url>https://drewnoakes.com/code/exif/</url>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/drewnoakes/metadata-extractor/issues</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>Announce mailing list</name>
<archive>http://groups.google.com/group/metadata-extractor-announce</archive>
</mailingList>
<mailingList>
<name>Development mailing list</name>
<archive>http://groups.google.com/group/metadata-extractor-dev</archive>
</mailingList>
</mailingLists>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git://github.com/drewnoakes/metadata-extractor.git</connection>
<developerConnection>scm:git:git@github.com:drewnoakes/metadata-extractor.git</developerConnection>
<url>https://github.com/drewnoakes/metadata-extractor</url>
</scm>
<developers>
<developer>
<id>drewnoakes</id>
<name>Drew Noakes</name>
<url>https://drewnoakes.com</url>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.adobe.xmp</groupId>
<artifactId>xmpcore</artifactId>
<version>5.1.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<directory>Output/maven</directory>
<outputDirectory>Output/maven/classes</outputDirectory>
<sourceDirectory>Source</sourceDirectory>
<testSourceDirectory>Tests</testSourceDirectory>
<testResources>
<testResource>
<directory>Tests/Data</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19</version>
<configuration>
<includes>
<include>**/*Test*.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<Implementation-Title>metadata-extractor</Implementation-Title>
<Implementation-Vendor>Drew Noakes</Implementation-Vendor>
<Implementation-Version>${project.version}</Implementation-Version>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.1</version>
<configuration>
<!--<additionalparam>-Xdoclint:none</additionalparam>-->
<stylesheetfile>${basedir}/src/main/javadoc/stylesheet.css</stylesheetfile>
<show>public</show>
<windowtitle>metadata-extractor - Javadoc - Extracts Exif, IPTC, XMP, ICC and other metadata from
image files
</windowtitle>
<notimestamp>true</notimestamp>
<header>
<![CDATA[<a href='https://drewnoakes.com/code/exif/' title='Go to the project home page.'><img src='https://raw.githubusercontent.com/drewnoakes/metadata-extractor/master/Resources/metadata-extractor-logo-131x30.png' border="0" alt='Metadata Extractor Logo'></a>]]></header>
<bottom><![CDATA[<i>Copyright © 2002-2016 Drew Noakes. All Rights Reserved.</i>
<script src='http://www.google-analytics.com/urchin.js' type='text/javascript'></script>
<script type='text/javascript'>
_uacct = 'UA-936661-1';
urchinTracker();
</script>]]></bottom>
<excludePackageNames>com.drew.tools</excludePackageNames>
<stylesheetfile>Resources/javadoc-stylesheet.css</stylesheetfile>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<!-- Don't release deployments automatically -->
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>coverage</id>
<activation>
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<formats>
<format>xml</format>
</formats>
</configuration>
<executions>
<execution>
<id>cobertura-check</id>
<phase>verify</phase>
<goals>
<goal>cobertura</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>3.1.0</version>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.drew.imaging.bmp.BmpMetadataReader.class
com.drew.imaging.FileType.class
com.drew.imaging.FileTypeDetector.class
com.drew.imaging.gif.GifMetadataReader.class
com.drew.imaging.ico.IcoMetadataReader.class
com.drew.imaging.ImageMetadataReader.class
com.drew.imaging.ImageProcessingException.class
com.drew.imaging.jpeg.JpegMetadataReader.class
com.drew.imaging.jpeg.JpegProcessingException.class
com.drew.imaging.jpeg.JpegSegmentData.class
com.drew.imaging.jpeg.JpegSegmentMetadataReader.class
com.drew.imaging.jpeg.JpegSegmentReader.class
com.drew.imaging.jpeg.JpegSegmentType.class
com.drew.imaging.pcx.PcxMetadataReader.class
com.drew.imaging.PhotographicConversions.class
com.drew.imaging.png.PngChromaticities.class
com.drew.imaging.png.PngChunk.class
com.drew.imaging.png.PngChunkReader.class
com.drew.imaging.png.PngChunkType.class
com.drew.imaging.png.PngColorType.class
com.drew.imaging.png.PngHeader.class
com.drew.imaging.png.PngMetadataReader.class
com.drew.imaging.png.PngProcessingException.class
com.drew.imaging.psd.PsdMetadataReader.class
com.drew.imaging.raf.RafMetadataReader.class
com.drew.imaging.riff.RiffHandler.class
com.drew.imaging.riff.RiffProcessingException.class
com.drew.imaging.riff.RiffReader.class
com.drew.imaging.tiff.TiffDataFormat.class
com.drew.imaging.tiff.TiffHandler.class
com.drew.imaging.tiff.TiffMetadataReader.class
com.drew.imaging.tiff.TiffProcessingException.class
com.drew.imaging.tiff.TiffReader.class
com.drew.imaging.webp.WebpMetadataReader.class
com.drew.lang.annotations.NotNull.class
com.drew.lang.annotations.Nullable.class
com.drew.lang.annotations.SuppressWarnings.class
com.drew.lang.BufferBoundsException.class
com.drew.lang.ByteArrayReader.class
com.drew.lang.ByteConvert.class
com.drew.lang.ByteTrie$ByteTrieNode.class
com.drew.lang.ByteTrie.class
com.drew.lang.CompoundException.class
com.drew.lang.DateUtil.class
com.drew.lang.GeoLocation.class
com.drew.lang.Iterables.class
com.drew.lang.KeyValuePair.class
com.drew.lang.NullOutputStream.class
com.drew.lang.RandomAccessFileReader.class
com.drew.lang.RandomAccessReader.class
com.drew.lang.RandomAccessStreamReader.class
com.drew.lang.Rational.class
com.drew.lang.SequentialByteArrayReader.class
com.drew.lang.SequentialReader.class
com.drew.lang.StreamReader.class
com.drew.lang.StringUtil.class
com.drew.metadata.adobe.AdobeJpegDescriptor.class
com.drew.metadata.adobe.AdobeJpegDirectory.class
com.drew.metadata.adobe.AdobeJpegReader.class
com.drew.metadata.Age.class
com.drew.metadata.bmp.BmpHeaderDescriptor.class
com.drew.metadata.bmp.BmpHeaderDirectory.class
com.drew.metadata.bmp.BmpReader.class
com.drew.metadata.Directory.class
com.drew.metadata.exif.ExifDescriptorBase.class
com.drew.metadata.exif.ExifDirectoryBase.class
com.drew.metadata.exif.ExifIFD0Descriptor.class
com.drew.metadata.exif.ExifIFD0Directory.class
com.drew.metadata.exif.ExifInteropDescriptor.class
com.drew.metadata.exif.ExifInteropDirectory.class
com.drew.metadata.exif.ExifReader.class
com.drew.metadata.exif.ExifSubIFDDescriptor.class
com.drew.metadata.exif.ExifSubIFDDirectory.class
com.drew.metadata.exif.ExifThumbnailDescriptor.class
com.drew.metadata.exif.ExifThumbnailDirectory.class
com.drew.metadata.exif.ExifTiffHandler.class
com.drew.metadata.exif.GpsDescriptor.class
com.drew.metadata.exif.GpsDirectory.class
com.drew.metadata.exif.makernotes.CanonMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.CanonMakernoteDirectory$AFInfo.class
com.drew.metadata.exif.makernotes.CanonMakernoteDirectory$CameraSettings.class
com.drew.metadata.exif.makernotes.CanonMakernoteDirectory$FocalLength.class
com.drew.metadata.exif.makernotes.CanonMakernoteDirectory$Panorama.class
com.drew.metadata.exif.makernotes.CanonMakernoteDirectory$ShotInfo.class
com.drew.metadata.exif.makernotes.CanonMakernoteDirectory.class
com.drew.metadata.exif.makernotes.CasioType1MakernoteDescriptor.class
com.drew.metadata.exif.makernotes.CasioType1MakernoteDirectory.class
com.drew.metadata.exif.makernotes.CasioType2MakernoteDescriptor.class
com.drew.metadata.exif.makernotes.CasioType2MakernoteDirectory.class
com.drew.metadata.exif.makernotes.FujifilmMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.FujifilmMakernoteDirectory.class
com.drew.metadata.exif.makernotes.KodakMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.KodakMakernoteDirectory.class
com.drew.metadata.exif.makernotes.KyoceraMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.KyoceraMakernoteDirectory.class
com.drew.metadata.exif.makernotes.LeicaMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.LeicaMakernoteDirectory.class
com.drew.metadata.exif.makernotes.NikonType1MakernoteDescriptor.class
com.drew.metadata.exif.makernotes.NikonType1MakernoteDirectory.class
com.drew.metadata.exif.makernotes.NikonType2MakernoteDescriptor.class
com.drew.metadata.exif.makernotes.NikonType2MakernoteDirectory.class
com.drew.metadata.exif.makernotes.OlympusCameraSettingsMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.OlympusCameraSettingsMakernoteDirectory.class
com.drew.metadata.exif.makernotes.OlympusEquipmentMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.OlympusEquipmentMakernoteDirectory.class
com.drew.metadata.exif.makernotes.OlympusMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.OlympusMakernoteDirectory$CameraSettings.class
com.drew.metadata.exif.makernotes.OlympusMakernoteDirectory.class
com.drew.metadata.exif.makernotes.PanasonicMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.PanasonicMakernoteDirectory.class
com.drew.metadata.exif.makernotes.PentaxMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.PentaxMakernoteDirectory.class
com.drew.metadata.exif.makernotes.RicohMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.RicohMakernoteDirectory.class
com.drew.metadata.exif.makernotes.SanyoMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.SanyoMakernoteDirectory.class
com.drew.metadata.exif.makernotes.SigmaMakernoteDescriptor.class
com.drew.metadata.exif.makernotes.SigmaMakernoteDirectory.class
com.drew.metadata.exif.makernotes.SonyType1MakernoteDescriptor.class
com.drew.metadata.exif.makernotes.SonyType1MakernoteDirectory.class
com.drew.metadata.exif.makernotes.SonyType6MakernoteDescriptor.class
com.drew.metadata.exif.makernotes.SonyType6MakernoteDirectory.class
com.drew.metadata.Face.class
com.drew.metadata.file.FileMetadataDescriptor.class
com.drew.metadata.file.FileMetadataDirectory.class
com.drew.metadata.file.FileMetadataReader.class
com.drew.metadata.gif.GifHeaderDescriptor.class
com.drew.metadata.gif.GifHeaderDirectory.class
com.drew.metadata.gif.GifReader.class
com.drew.metadata.icc.IccDescriptor.class
com.drew.metadata.icc.IccDirectory.class
com.drew.metadata.icc.IccReader.class
com.drew.metadata.ico.IcoDescriptor.class
com.drew.metadata.ico.IcoDirectory.class
com.drew.metadata.ico.IcoReader.class
com.drew.metadata.iptc.IptcDescriptor.class
com.drew.metadata.iptc.IptcDirectory.class
com.drew.metadata.iptc.IptcReader.class
com.drew.metadata.iptc.Iso2022Converter.class
com.drew.metadata.jfif.JfifDescriptor.class
com.drew.metadata.jfif.JfifDirectory.class
com.drew.metadata.jfif.JfifReader.class
com.drew.metadata.jfxx.JfxxDescriptor.class
com.drew.metadata.jfxx.JfxxDirectory.class
com.drew.metadata.jfxx.JfxxReader.class
com.drew.metadata.jpeg.JpegCommentDescriptor.class
com.drew.metadata.jpeg.JpegCommentDirectory.class
com.drew.metadata.jpeg.JpegCommentReader.class
com.drew.metadata.jpeg.JpegComponent.class
com.drew.metadata.jpeg.JpegDescriptor.class
com.drew.metadata.jpeg.JpegDirectory.class
com.drew.metadata.jpeg.JpegReader.class
com.drew.metadata.Metadata.class
com.drew.metadata.MetadataException.class
com.drew.metadata.MetadataReader.class
com.drew.metadata.pcx.PcxDescriptor.class
com.drew.metadata.pcx.PcxDirectory.class
com.drew.metadata.pcx.PcxReader.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
xmpcore-5.1.2.jar
/com.adobe.xmp/xmpcore/5.1.2
查看xmpcore所有版本文件
junit-4.12.jar
/junit/junit/4.12
查看junit所有版本文件
|