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

Advise me an image loader library which could load such formats as JPG, PNG, TIFF, TGA. It would be great if It could say me a pixel formats, such as R8G8B8, R5G6B5,..

share|improve this question
Where are you loading the images from? – Piyush Apr 10 '11 at 20:06
2  
If you want more people to answer your questions, you should start to accept more answers to your questions. You have 9 with 0 accepted right now. – Scott Apr 10 '11 at 20:13
@Piyush I am loading image from file. – itun Apr 10 '11 at 20:31
ImageMagick and it's JImageMagick wrapper. JAI and the default ImageIO jokes are kindergarden stuff compared to ImageMagick. – SyntaxT3rr0r Apr 11 '11 at 9:43

3 Answers

up vote 2 down vote accepted

TGA seems to be covered by the second link from Piyush. For TIFF see Java Advanced Imaging.

share|improve this answer

You can look at ImageIO#Read and use it like

BufferedImage image = ImageIO.read( new File( "image.jpg" ) );

ImageIO lets you save and restore Images to disk in a platform independent format. It handles various formats including "gif", "png" and "jpeg" (all lower case, or all upper case, but not mixed). You can use Use ImageIO.getWriterFormatNames() to find out which types are supported on your platform

share|improve this answer
I know imageIO, But it cannot load tga format, and I need it. – itun Apr 10 '11 at 20:44
ImageIO doesn't support TGA. Check this article - java-tips.org/other-api-tips/jogl/… – Piyush Apr 10 '11 at 20:48

BufferedImage is a pretty common one that is used. Check out the docs here. If you want something that wraps the entire process, look at ImageIO. Use the

public static BufferedImage read(File input)

method.

share|improve this answer
I need loading from file. And this loading must be independent on the file format. I give file, loader gives me pixels. – itun Apr 10 '11 at 20:35
Try using ImageIO then. I've updated the answer above with the link. – Scott Apr 11 '11 at 17:51

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.