Prabhakar
Prabhakar

Reputation:

Java Imaging Framework

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

Answers (3)

Diego Catalano
Diego Catalano

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

Jherico
Jherico

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

moshen
moshen

Reputation: 1124

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

Upvotes: 2

Related Questions