gpt4 book ai didi

java - 将像素矩阵转换为图像

转载 作者:行者123 更新时间:2023-12-01 19:20:17 25 4
gpt4 key购买 nike

我想将此矩阵转换为我构建的原始图像。我想知道最简单的方法。

int 像素[宽度][高度];//填充彩色图像(jpg)的像素

最佳答案

我想知道你将如何管理 int 类型的颜色代码。

无论如何,我认为代码会是这样的。没有测试过

BufferedImage image;
for(int i=0; i<pixels.length; i++) {
for(int j=0; j<pixels[i].length; j++) {
int a = pixels[i][j];
Color newColor = new Color(R,G,B);
image.setRGB(j,i,newColor.getRGB());
}
}

希望对你有帮助

关于java - 将像素矩阵转换为图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59365112/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com