Programming Tips - Java: How can I read/write more image formats?
Date: 2017feb6
Language: Java
Q. Java: How can I read/write more image formats?
A. The Java ImageIO library can read GIF, PNG, JPEG, BMP, WBMP.
And with plugins can do many more.
https://docs.oracle.com/javase/tutorial/2d/images/loadimage.html
On Android, use BitmapFactory which doesn't support so many formats.