Reputation:
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.
Upvotes: 1
Views: 503
Reputation: 689
Try to use Catalano Framework. It is extreme easily. You can run the same code in Android as well. There is a lot algorithm in parallel. Example: Resize image.
FastBitmap fb = new FastBitmap(pathname);
//You can choose interpolation algorithm too.
Resize r = new Resize();
r.applyInPlace(fb);
Upvotes: 0
Reputation: 29240
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.
Upvotes: 1