我正在使用imgscalr Java库来调整图像大小。
resize()方法调用的结果是BufferedImage对象。我现在想把它保存为文件(通常是.jpg)。
我该怎么做?我想从BufferedImage
- >开始File
但也许这不是正确的做法?
答案 0 :(得分:202)
File outputfile = new File("image.jpg");
ImageIO.write(bufferedImage, "jpg", outputfile);
答案 1 :(得分:20)
您可以使用javax.imageio.ImageIO
类的write方法保存BufferedImage
对象。方法的签名是这样的:
public static boolean write(RenderedImage im, String formatName, File output) throws IOException
此处im
是要写的RenderedImage
,formatName
是包含格式的非正式名称的字符串(例如png),output
是要写入的文件对象写信给。 PNG文件格式的方法示例用法如下所示:
ImageIO.write(image, "png", file);
答案 2 :(得分:10)
答案在Java文档的Tutorial for Writing/Saving an Image中。
Image I/O
类提供以下保存图像的方法:
static boolean ImageIO.write(RenderedImage im, String formatName, File output) throws IOException
教程解释了
BufferedImage类实现RenderedImage接口。
因此它可以在该方法中使用。
例如,
try {
BufferedImage bi = getMyImage(); // retrieve image
File outputfile = new File("saved.png");
ImageIO.write(bi, "png", outputfile);
} catch (IOException e) {
// handle exception
}
使用try block围绕write
来电非常重要,因为根据the API,该方法会抛出IOException
"如果是写作期间发生错误"
还更详细地解释了方法的目标,参数,回报和抛出:
使用支持给定格式的任意ImageWriter将图像写入File。如果已存在文件,则其内容将被丢弃。
参数:
im - 要写的RenderedImage。
formatName - 包含格式的非正式名称的字符串。
输出 - 要写入的文件。
返回:
如果找不到合适的作者,则false。
抛出:
IllegalArgumentException - 如果任何参数为null。
IOException - 如果在写入期间发生错误。
然而,formatName
可能看起来仍然模糊不清;教程清理了一下:
ImageIO.write方法调用实现PNG编写“PNG编写器插件”的代码。使用术语插件,因为Image I / O是可扩展的,并且可以支持多种格式。
但是以下标准图像格式插件:JPEG,PNG,GIF,BMP和WBMP始终存在。
对于大多数应用程序,使用这些标准插件之一就足够了。它们具有易于获得的优点。
但是,您可以使用其他格式:
Image I / O类提供了一种插入支持可以使用的其他格式的方法,并且存在许多这样的插件。如果您对可以在系统中加载或保存的文件格式感兴趣,可以使用ImageIO类的getReaderFormatNames和getWriterFormatNames方法。这些方法返回一个字符串数组,列出了此JRE支持的所有格式。
String writerNames[] = ImageIO.getWriterFormatNames();
返回的名称数组将包含已安装的任何其他插件,并且这些名称中的任何一个都可以用作格式名称来选择图像编写器。
有关完整实用的示例,可以参考Oracle的SaveImage.java
example.
答案 3 :(得分:9)
创建java.awt.image.bufferedImage并将其保存到文件:
import java.io.*;
import java.awt.image.*;
import javax.imageio.*;
public class Main{
public static void main(String args[]){
try{
BufferedImage img = new BufferedImage(
500, 500, BufferedImage.TYPE_INT_RGB );
File f = new File("MyFile.png");
int r = 5;
int g = 25;
int b = 255;
int col = (r << 16) | (g << 8) | b;
for(int x = 0; x < 500; x++){
for(int y = 20; y < 300; y++){
img.setRGB(x, y, col);
}
}
ImageIO.write(img, "PNG", f);
}
catch(Exception e){
e.printStackTrace();
}
}
}
备注:强>
答案 4 :(得分:1)
在您的代码中:
import static org.imgscalr.Scalr.*;
public static BufferedImage resizeBufferedImage(BufferedImage image, Scalr.Method scalrMethod, Scalr.Mode scalrMode, int width, int height) {
BufferedImage bi = image;
bi = resize( image, scalrMethod, scalrMode, width, height);
return bi;
}
// Save image:
ImageIO.write(Scalr.resize(etotBImage, 150), "jpg", new File(myDir));
答案 5 :(得分:0)
作为一个班轮:
ImageIO.write(Scalr.resize(ImageIO.read(...), 150));