Git Product home page Git Product logo

nmote-iim4j's Introduction

IIM4J - IPTC IIM Library for Java

IIM4J allows Java programmers to read, write and process IPTC IIM version 4 files. For example, you can read and write metadata contained in JPEG files. More information regarding IIM is available on IPTC website, http://www.iptc.org .

Features

  • Supports Java 1.5+
  • Full IPTC version 4 compliance
  • Bundled subject-reference-system
  • No external dependecies at all
  • BSD style license

Add to Your's Project

If you use maven for dependency management, add following snippet to pom.xml:

	<dependencies>
		...

		<dependency>
			<groupId>com.nmote.iim4j</groupId>
			<artifactId>nmote-iim4j</artifactId>
			<version>1.0.0</version>
		</dependency>

	</dependencies>

How to use it

There are few sample programs in a samples directory.

To read JPEG metadata you would do:

	IIMReader reader = new IIMReader(new JPEGIIMInputStream(new FileIIMInputStream(file)),
		new IIMDataSetInfoFactory());

	IIMFile iimFile = new IIMFile();
	iimFile.readFrom(reader, 20);

	for (DataSet ds : iimFile.getDataSets()) {
		Object value = ds.getValue();
		DataSetInfo info = ds.getInfo();
		System.out.println(info.toString() + " " + info.getName() + ": " + value);
	}

License

IIM4J is released under BSD license. See LICENSE.txt for more information.

Building

To produce nmote-xr.jar you will need apache maven installed. Run:

mvn clean package

History

  • Version 1.1.0. 10.04.2015 Support for basic validation of IIMFile metadata. See IIMFile::validate methods. Few small fixes/improvements.

  • Version 1.0.0. 31.01.2015 Keeping same version, only changes are better javadocs and publishing to maven central.

  • Version 1.0.0. 02.02.2014 Cleanup, removed external deps, mavenized, generified.

  • Version 0.9.1 12.04.2005 Several bug fixes, feature complete, extended JavaDocs.

  • Version 0.9 10.01.2005 Bug fixes, support for IIM record inside of JPEG (Photoshop support), support for multiple encodings.

  • Version 0.8 11.05.2004 Initial release of project IIM4J on Sourceforge under BSD license

Who is using IIM4J

Author contact and support

For any further information please contact Vjekoslav Nesek ([email protected])

nmote-iim4j's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.