exiguous

common EXIF reader/decoder

License

License

GroupId

GroupId

org.riversun
ArtifactId

ArtifactId

exiguous
Last Version

Last Version

0.3.0
Release Date

Release Date

Type

Type

jar
Description

Description

exiguous
common EXIF reader/decoder
Project URL

Project URL

https://github.com/riversun/exiguous
Source Code Management

Source Code Management

https://github.com/riversun/exiguous

Download exiguous

How to add to project

<!-- https://jarcasting.com/artifacts/org.riversun/exiguous/ -->
<dependency>
    <groupId>org.riversun</groupId>
    <artifactId>exiguous</artifactId>
    <version>0.3.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.riversun/exiguous/
implementation 'org.riversun:exiguous:0.3.0'
// https://jarcasting.com/artifacts/org.riversun/exiguous/
implementation ("org.riversun:exiguous:0.3.0")
'org.riversun:exiguous:jar:0.3.0'
<dependency org="org.riversun" name="exiguous" rev="0.3.0">
  <artifact name="exiguous" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.riversun', module='exiguous', version='0.3.0')
)
libraryDependencies += "org.riversun" % "exiguous" % "0.3.0"
[org.riversun/exiguous "0.3.0"]

Dependencies

test (1)

Group / Artifact Type Version
junit : junit jar 4.7

Project Modules

There are no modules declared in this project.

Overview

'exiguous' is a java library for Exif (Exchangeable image file format) data.

Maven Central

You can easy to access Exif tags from your code.

It is licensed under The MIT License.

Examples

  • Java code here
package org.example;

import org.riversun.exiguous.ExifInfo;
import org.riversun.exiguous.ExiguousExifReader;

public class Sample {

	public static void main(String[] args) {

		String jpgFilePath = "src/test/resources/test01.jpg";

		ExiguousExifReader exifReder = new ExiguousExifReader();

		ExifInfo exifInfo = new ExifInfo();

		exifReder.read(jpgFilePath, exifInfo);

		System.out.println(exifInfo);
	}
}
  • it results in
ExifInfo [maker=Canon, model=Canon PowerShot SX130 IS, dateTime=2015:05:02 19:26:50, xResolution=, yResolution=, exposureTime=0.00125, exifVersion=0230, fValue=3.5, makerNote=null, imageWidth=640, imageHeight=480, GpsIFDVersion=null, GpsLongitude=0.0, GpsLongitudeRef=null, GpsLatitude=0.0, GpsLatitudeRef=null, GpsLatitudeDDMMSSsss=null, GpsLongitudeDDMMSSsss=null, GpsImageDirection=0.0]

More Details

See javadoc as follows.

https://riversun.github.io/javadoc/exiguous/

Downloads

maven

  • You can add dependencies to maven pom.xml file.
<dependency>
  <groupId>org.riversun</groupId>
  <artifactId>exiguous</artifactId>
  <version>0.3.0</version>
</dependency>

Versions

Version
0.3.0