如何在java中把一个Image对象保存为硬盘上的图片文件
发布网友
发布时间:2022-05-29 18:02
我来回答
共2个回答
热心网友
时间:2023-10-31 12:49
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 - 如果在写入过程中发生错误。
即可
热心网友
时间:2023-10-31 12:49
用流写入,很简单的