Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using both the JAI media apis and ImageMagick?

ImageMagick has some scalability issues and the JNI based JMagick isn't attractive either. JAI has poor quality results when doing resizing operations compared to ImageMagick.

Does anyone know of any excellent tools either open source or commercial that are native java and deliver high quality results?

share|improve this question
2  
JMagick has almost no documentation except for the javadocs. I've just spent two hours searching for something that should have been pretty easy to do. – Alex Ciminian Aug 4 '10 at 16:30
Indeed. I chose to just go out of process and use ImageMagick using apache exec as a means of managing the process. This worked fine. I might have gone so far as to build an image server just for this purpose. Its hard to find something with the quality and functionality of ImageMagick. – Daniel Honig Aug 5 '10 at 20:18
See this answer on a duplicate question: stackoverflow.com/a/2407269/11236 – ripper234 Nov 28 '11 at 15:46

9 Answers

up vote 38 down vote accepted

There's ImageJ, which boasts to be the

world's fastest pure Java image processing program

It can be used as a library in another application. It's architecture is not brilliant, but it does basic image processing tasks.

share|improve this answer
1  
I use ImageJ as a library in a number of image processing applications. It's a very decent Java library. It integrates nicely with Java2D too, so you can mix and match the 2 quite easily. – hohonuuli Sep 20 '10 at 17:12
   
At the time I used ImageJ its API was pretty awkward.It's more an application for which you can write plugins than a library. And as far I remember, trying do develop new GUI in that old AWT code base was a pain. – Ivan Sep 21 '10 at 8:28

I know this question is quite old, but as new software comes out it does help to get some new links to projects that might be interesting for folks.

imgscalr is pure-Java image resizing (and simple ops like padding, cropping, rotating, brighten/dimming, etc.) library that is painfully simple to use - a single class consists of a set of simple graphics operations all defined as static methods that you pass an image and get back a result.

The most basic example of using the library would look like this:

BufferedImage thumbnail = Scalr.resize(image, 150);

And a more typical usage to generate image thumbnails using a few quality tweaks and the like might look like this:

import static org.imgscalr.Scalr.*;

public static BufferedImage createThumbnail(BufferedImage img) {
    // Create quickly, then smooth and brighten it.
    img = resize(img, Method.SPEED, 125, OP_ANTIALIAS, OP_BRIGHTER);

    // Let's add a little border before we return result.
    return pad(img, 4);
}

All image-processing operations use the raw Java2D pipeline (which is hardware accelerated on major platforms) and won't introduce the pain of calling out via JNI like library contention in your code.

imgscalr has also been deployed in large-scale productions in quite a few places - the inclusion of the AsyncScalr class makes it a perfect drop-in for any server-side image processing.

There are numerous tweaks to image-quality you can use to trade off between speed and quality with the highest ULTRA_QUALITY mode providing a scaled result that looks better than GIMP's Lancoz3 implementation.

share|improve this answer
thank you for this awesome post. – kocodude Apr 1 '12 at 16:28
most welcome, glad it helped! – Riyad Kalla Apr 1 '12 at 16:50
+1, seems very good at first glance, will give this a try. – aaamos Apr 24 '12 at 6:29
imagscalr looks really great! Haven't tried it yet though, but it's now on my to-try-out-list. Thanks – Franz See Jul 19 '12 at 3:18
@Riyad Kalla it seems interesting thanks... But I don't get it can it be used in commercial projects? – user592704 Jan 7 at 5:29
show 4 more comments

Another good alternative: http://www.marvinproject.org

share|improve this answer
4  
Thanks a lot. You saved my day! :D (PS: I am not the OP. I came across this post while googling and trust me, it helped me a lot! (Will buy you a beer if I meet you someday.)). – missingfaktor Mar 9 '11 at 8:46
1  
@missingfaktor now I owe you a beer. Your praise of Joseph just saved my day too. Joseph, your getting a beer too ofc :)! – Filip Dupanović Oct 19 '11 at 10:03
2  
That URL apparently no longer exists, but marvinproject.sourceforge.net seems to be the new URL. – aaamos Apr 24 '12 at 4:57
Okay, I'm sort o obligated to give THIS one a look. =) – Marvo Jul 28 '12 at 22:22

Processing is new but very, very good.

share|improve this answer
I am aware of processing, but are folks really using it in the, I'd like to go run X transformation on my library of X jpeg's sort of fashion? – Daniel Honig Mar 3 '09 at 6:48
I've used it and seems really powerfull and worth betting in – fmsf Mar 6 '09 at 3:31
processing is GPL. – mP. Jun 21 '11 at 0:18
1  
Actually the core libraries (which could be used for embedding functionality) are LGPL. But nobody asked what the license is. wiki.processing.org/w/… – Ben Atkin Mar 19 '12 at 5:15

http://im4java.sourceforge.net/ - if you're running linux forking a new process isn't expensive.

share|improve this answer
Watch out for out of memory errors though... – Claes Mogren Oct 6 '10 at 8:42
forking is expensive. It can use a lot of memory. See the person's quote from an article at the bottom of coderanch.com/t/419196/java/java/there-any-way-execute-Linux (The article is: developers.sun.com/solaris/articles/subprocess/subprocess.html) – Plaudit Design - Web Design Aug 25 '11 at 17:50
@Plaudit checkout gm4java, it creates a pool of GM process in interactive mode and doesn't need to fork every time to convert an image. kennethxu.blogspot.com/2013/04/… – Kenneth Xu Apr 17 at 3:19

I'm not a Java guy, but OpenCV is great for my needs. Not sure if it fits yours. Here's a Java port, I think: http://ubaa.net/shared/processing/opencv/

share|improve this answer

For commercial tools, you might want to try Snowbound.

http://www.snowbound.com/

My experience with them is somewhat dated, but I found their Java Imaging API to be a lot easier to use than JAI and a lot faster.

Their customer support and code samples were very good too.

share|improve this answer

RoboRealm vision software list mentions JHLabs and NeatVision among lots of other non-Java based libraries.

share|improve this answer

imo the best approach is using GraphicsMagick Image Processing System with im4java as a comand-line interface for Java.

There are a lot of advantages of GraphicsMagick, but one for all:

  • GM is used to process billions of files at the world's largest photo sites (e.g. Flickr and Etsy).
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.