vote up 1 vote down star

Is there any Open source or Commercial Java frameworks for doing image operations such as converting the images from one format to other and scaling the images etc.

There should be no installation.Set of jars that are in classpath that will do the job.

I have looked into the java-image-scaling library but it is having issues.

Thanks in advance.

flag

2 Answers

vote up 1 vote down

ImageMagick is the best framework for doing the kind of things you're taking about and you can use JMagick or Im4java to wrap its usage, but it does require the installation of ImageMagick.

link|flag
vote up 2 vote down

You can do most of these operations in Java natively using JAI. You can also use Swing Graphics2D to do any manipulation required.

link|flag
I tried JAI also. It is having issues when generating thumbnails from gif and other formats. – Prabhakar May 28 at 17:21
1  
It is, or you are? Be specific and maybe we can help. – Nick Veys May 28 at 17:24
I know that I've had to use some 3rd party classes for animated gif support, but it should be able to handle regular gif just fine. – moshen May 28 at 20:16

Your Answer

Get an OpenID
or

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