Can someone please help with some code for creating a thumbnail for a JPEG in Java.
I'm new at this, so a step by step explanation would be appreciated.
feedback
|
This will create a 100x100 pixels thumbnail as an Image object. If you want to write it back to disk simply convert the code to this:
Also if you are concerned about speed issues (the method described above is rather slow if you want to scale many images) use these methods and the following declaration :
And then call :
where 0.5 is the scale ratio and img is a BufferedImage containing the normal-sized image. | ||||
|
feedback
|
|
As you might have found out "easy" and "good looking result" are two very different things. I have encapsulated both of these requirements into a very simple java image scaling library (Apache 2 license) that just does everything right for you. Example code to create a thumbnail looks like this:
Your image proportions are honored, the library makes a best-guess at the method it should use based on the amount of change in the image due to scaling (FASTEST, BALANCED or QUALITY) and the best supported Java2D image types are always used to do the scaling to avoid the issue of "black" results or really terrible looking output (e.g. overly dithered GIF images). Also, if you want to force it to output the best looking thumbnail possible in Java, the API call would look like this:
Not only will the library use the Java2D recommended incremental scaling for you to give you the best looking result, it will also apply an optional antialiasing effect to the thumbnail (ConvolveOp with a very fine-tuned kernel) to every-so-slightly soften the transitions between pixel values so make the thumbnail look more uniform and not sharp or poppy as you might have seen when you go from very large images down to very small ones. You can read through all the comments in the library (the code itself is doc'ed heavily) to see all the different JDK bugs that are worked around or optimizations that are made to improve the performance or memory usage. I spent a LOT of time tuning this implementation and have had a lot of good feedback from folks deploying it in web apps and other Java projects. | |||||||
feedback
|
|
The JMagick library (and implementation of ImageMagick in Java) will have what you need. | |||
|
feedback
|
|
the Java code above (with the scale / getCompatibleImage methods) worked great for me, but when I deployed to a server, it stopped working, because the server had no display associated with it -- anyone else with this problem can fix it by using: BufferedImage bi = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB); instead of BufferedImage bi = getCompatibleImage(w, h); and deleting the getCompatibleImage method (later note -- it turns out this works great for most images, but I got a bunch from my companys marketing department that are 32 bit color depth jpeg images, and the library throws an unsupported image format exception for all of those :( -- imagemagick / jmagick are starting to look more appealing) | ||||
|
feedback
|
|
This is simple way of creating a 100 X 100 thumbnail without any stretch or skew in image.
| |||
|
feedback
|