vote up 1 vote down star
1

I am aware that Java includes very advanced image processing API's but what I'm looking for is a pure Java API (uses Java2D) that is "phrased" in terms more appropriate to common tasks of web image processing i.e. I want to write:

image.scale(0.2)

instead of

AffineTransform t = new AffineTransform(...)
t.resize(...)
t.translate(...)
AffineTransformOp = new AffineTransformOp(...)
etc. etc.

Think ImageMagick or GD.

flag

2 Answers

vote up 1 vote down check

You could write your own wrapper classes around Java's ImageIO libraries that gives you the method signatures you need.

link|flag
Yes, I could do this. The question is, is this the best (only?) option. – Ramon Oct 30 at 0:13
vote up 0 vote down

There is no java native equivalent for the full functionality of ImageMagick that I know of. However there are two java bindings for ImageMagic: JMagick and IM4Java.

link|flag

Your Answer

Get an OpenID
or

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