imgscalr is a tight and simple image manipulation library for Java.
As imgscalr’s popularity has grown more and more people have asked for access to it via Maven’s central repository. While The Buzz Media has provided access to imgscalr via our own Maven repo as well as GitHub downloads, developers have pointed out that it is still easier if imgscalr was available from the central Maven repo.
After a bit of work I’ve gotten the project imported into the central repository and using it via Maven is as easy as adding the following dependency in your pom.xml:
<dependencies> ... <dependency> <groupId>org.imgscalr</groupId> <artifactId>imgscalr-lib</artifactId> <version>4.1</version> <type>jar</type> <scope>compile</scope> </dependency> ... <dependencies> |
I hope this makes using imgscalr easier for anyone interested in the library.
Happy programming!

excellent news, thanks!