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,..
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
TGA seems to be covered by the second link from Piyush. For TIFF see Java Advanced Imaging. |
|||
|
|
|
You can look at ImageIO#Read and use it like
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 |
|||||
|
|
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
method. |
||||
