📅  最后修改于: 2023-12-03 14:53:50.128000             🧑  作者: Mango
Java 提供了许多类库和工具,使图像处理变得异常简单。这里,我介绍了如何将字节数组转换为图像的 Java 程序。
以下是具体实现的步骤:
导入必要的包和类库
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.IOException;
将字节数组装换为 ByteArrayInputStream
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
创建 BufferedImage 对象
BufferedImage image = ImageIO.read(bais);
对图像进行操作,如压缩,缩放等等。
将 BufferedImage 对象保存到本地文件,代码如下:
File outputfile = new File("saved.png");
ImageIO.write(image, "png", outputfile);
完整的程序如下:
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
public class ByteArrayToImage {
public static void main(String[] args) throws IOException {
// 模拟一段字节数组
byte[] bytes = new byte[] {-1, -40, -1, -32, 0, 16, 74, 70, 73, 70, 0, 1, 1, 1, 0, 96, 0, 96, 0, 0};
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
// 读取 ByteArrayInputStream 中的字节数组并创建 BufferedImage 对象
BufferedImage image = ImageIO.read(bais);
// 将 BufferedImage 对象写到本地文件
File outputfile = new File("saved.png");
ImageIO.write(image, "png", outputfile);
}
}
Java 提供了许多类库和工具使得图像处理变得非常简单。将字节数组转换为图像,也只需要遵循上述的几个步骤即可实现。