BufferedImage输出
时间: 2023-12-21 14:24:08 浏览: 73
好的,关于输出 BufferedImage,你可以使用以下代码示例:
```java
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
public class ImageOutputExample {
public static void main(String[] args) {
int width = 100;
int height = 100;
// 创建一个 BufferedImage 对象
BufferedImage bufferedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
// 设置像素值
for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
int rgb = (255 << 24) | (x << 16) | (y << 8); // 设置 RGB 值
bufferedImage.setRGB(x, y, rgb);
}
}
// 保存 BufferedImage
File outputFile = new File("output.png");
try {
ImageIO.write(bufferedImage, "png", outputFile);
System.out.println("BufferedImage 已成功保存为 output.png");
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
这段代码将创建一个大小为 100x100 的 BufferedImage,并将每个像素的 RGB 值设置为 x 和 y 坐标的组合。然后它将保存为名为 "output.png" 的文件。
阅读全文