Ответ 1
Поддерживаемые типы могут изменяться производителем и версией, хотя вы можете обычно рассчитывать на PNG, JPG и GIF.
import javax.imageio.ImageIO;
public class QuickTest {
public static void main(String[] args) throws Exception {
String[] types = ImageIO.getReaderFileSuffixes();
System.out.println("This JRE supports image types:");
for (String type : types) {
System.out.println("Type: " + type);
}
}
}
Вывод здесь/сейчас
This JRE supports image types:
Type: bmp
Type: jpg
Type: wbmp
Type: jpeg
Type: png
Type: gif