Apache Commons Imaging

repository·master·Indexed 19 days ago

https://github.com/apache/commons-imaging

A pure-Java library for image manipulation, providing capabilities to read and write various image formats. Formerly known as Sanselan.

Tokens
246
Snippets
2
Records
3
Agent score
17%

What's inside Apache Commons Imaging

  1. Build Apache Commons Imaging from source

    master

    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.

    mvn
  2. Install Apache Commons Imaging via Maven

    master

    To 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>