Archive | Apache Sanselan

18 July 2009 ~ 0 Comments

[Apache Sanselan] Demystifying how Sanselan determines image format

Apache Sanselan is a pure Java library for reading and Writing Image formats. It has recently graduated from Incubator and is now a proud member of Apache commons proper.
In previous articles, we saw how to retrieve Image metadata and information. In this post we shall see how Sanselan guesses the Image format. We shall take [...]

Continue Reading

17 July 2009 ~ 0 Comments

[Apache Sanselan] Retrieving Image Metadata using Sanselan

Apache Sanselan is a pure Java library for reading and Writing Image formats. It has recently graduated from Incubator and is now a proud member of Apache commons proper.
In this article we shall see how to get Image metadata using Apache Sanselan.
Let’s see how the code looks
public static void main(String[] args) {
[...]

Continue Reading

16 July 2009 ~ 0 Comments

[Apache Sanselan] Retrieving Image Information using Sanselan

Apache Sanselan is a pure Java library for reading and Writing Image formats. It has recently graduated from Incubator and is now a proud member of Apache commons proper.
In this article we shall see how to get Image Information using Apache Sanselan.
Let’s see how the code looks
public static void main(String[] args) {
String imageFile = args[0];
System.out.println("Image [...]

Continue Reading