是的,我们可以使用Java中的ImageIO类获取受支持的图像类型。以下是获取Java支持的图像类型的示例:
package my; import javax.imageio.ImageIO; public class SwingDemo { public static void main(String[] args) throws Exception { String[] imgTypes = ImageIO.getReaderFileSuffixes(); System.out.print("Supported Image Types = "); for (String type : imgTypes) { System.out.print("\n" + type); } } }
输出结果
Supported Image Types = jpg tif tiff bmp gif png wbmp jpeg