javax.imageio.ImageIO
public static boolean write(RenderedImage im,
String formatName,
File output)
throws IOException
使用支持给定格式的任意 ImageWriter 将一个图像写入 File。如果已经有一个 File 存在,则丢弃其内容。
参数:
im - 要写入的 RenderedImage。
formatName - 包含格式的非正式名称的 String。
output - 将在其中写入数据的 File。
返回:
如果没有找到合适的 writer,则返回 false。
抛出:
IllegalArgumentException - 如果任何参数为 null。
IOException - 如果在写入过程中发生错误。
即可