Overview of Apache Commons Imaging
masterApache Commons Imaging (formerly known as Sanselan) is a pure-Java library designed for image processing and manipulation. It provides tools for reading and writing various image formats.
repository·master·Indexed 19 days ago
https://github.com/apache/commons-imagingA pure-Java library for image manipulation, providing capabilities to read and write various image formats. Formerly known as Sanselan.
To build the project from source, you need a Java JDK and Apache Maven installed. The required Java version is specified in the pom.xml under the maven.compiler.source property.
To run the default Maven goal, which executes all tests and checks, run mvn from a command shell in the project root.
mvnTo use Apache Commons Imaging in your Java project, add the following dependency to your pom.xml file. This pulls the library from the central Maven repositories.
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-imaging</artifactId>
<version>1.0.0-alpha6</version>
</dependency>