Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering if there are any implementations of java.awt.Image out there other than the ones provided by the Java standard edition. Any third party classes maybe that provide any useful features overlooked by Sun?

share|improve this question
Is there a problem with the standard implementations? – skaffman Aug 3 '09 at 21:02
No of course not. I'm satisfied with them. It's just like with the Collections framework. Apache implemented their own and Google extended the existing one to make it better. Maybe someone has come up with a good idea that Sun hasn't thought of. An idea could be for instance to have an Image subclass that stores the image in a compressed format in memory. – Savvas Dalkitsis Aug 3 '09 at 21:12

3 Answers

up vote 1 down vote accepted

The Java Advanced Imaging (JAI) library subclasses Image to allow for filter-chain processing of images, tile-by-tile image processing, and some other fancy features. JAI is not part of the standard library, but it IS a Sun product.

I believe that some of the media-playing libraries subclass the Image class.

From what I've seen, most libraries use the standard BufferedImage and Java2D interfaces/classes, but define their own way to read/write/generate/process an image. They'll pass around image data as primitive arrays often.

The reason: The Image class isn't a great candidate for extension. It's got a lot of random methods and fields that don't make sense for most things (acceleration priority, getScaledInstance method, ImageCapabilities... the list goes on). It makes much more sense to write an ImageProducer/ImageConsumer for things that convert to images. For an editable slab of pixels, it makes sense to work with Graphics/Graphics2D implementations.

share|improve this answer

I know that for a project I was working on, I implemented image to paint a specific set of icons dynamically based on other information that was going on. However, I have never had any other reason to look outside of the standard sun image implementations for other implementations. The only thing I could think of would be to support a format that Sun does not support, and I have not needed to do that.

share|improve this answer

I found one used by JHotDraw

org.jhotdraw.contrib.zoom.DoubleBufferImage

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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