gpt4 book ai didi

java - 将二维像素数组转换为 BufferedImage

转载 作者:搜寻专家 更新时间:2023-11-01 02:58:52 25 4
gpt4 key购买 nike

我使用了来自 this 的已接受答案代码所以问题。现在,我想转换回 BufferedImage(最好不要使用 setRGB())。我试过这个:

private BufferedImage createImage(int[][] pixelData, BufferedImage outputImage){
final int[] outputImagePixelData = ((DataBufferInt) outputImage.getRaster().getDataBuffer()).getData();
System.arraycopy(pixelData, 0, outputImagePixelData, 0, pixelData.length);
return outputImage;
}

但它不起作用,因为它采用一维数组而不是二维数组作为参数。

最佳答案

如果您的 outputImage 已经具有良好的类型和格式,那么您可以使用循环简单地进行 2D 到 1D 转换(假设您的数组编码是 [nbRows][RowLength]):

private BufferedImage createImage(int[][] pixelData, BufferedImage outputImage)
{
int[] outputImagePixelData = ((DataBufferInt) outputImage.getRaster().getDataBuffer()).getData() ;

final int width = outputImage.getWidth() ;
final int height = outputImage.getHeight() ;

for (int y=0, pos=0 ; y < height ; y++)
for (int x=0 ; x < width ; x++, pos++)
outputImagePixelData[pos] = pixelData[y][x] ;

return outputImage;
}

但是,INT 类型在 BufferedImage 中并没有很好地定义。默认情况下,您有 TYPE_INT_RGB 和 TYPE_INT_ARGB,它们将像素编码的 R、G、B、A 值与单个 INT 连接起来。如果你想创建一个单一 channel 的 INT 类型的灰度级 BufferedImage,那么你应该这样做:

private BufferedImage createImage(int[][] pixelData)
{
final int width = pixelData[0].length ;
final int height = pixelData.length ;
// First I create a BufferedImage with a DataBufferInt, with the appropriate dimensions and number of channels/bands/colors
ColorSpace myColorSpace = new FloatCS(ColorSpace.TYPE_GRAY, channel) ;
int[] bits = new int[]{32} ;
ColorModel myColorModel = new ComponentColorModel(myColorSpace,bits,false,false,ColorModel.OPAQUE,DataBuffer.TYPE_INT) ;
BufferedImage outputImage = new BufferedImage(myColorModel, myColorModel.createCompatibleWritableRaster(width, height), false, null) ;

int[] outputImagePixelData = ((DataBufferInt) outputImage.getRaster().getDataBuffer()).getData() ;

for (int y=0, pos=0 ; y < height ; y++)
for (int x=0 ; x < width ; x++, pos++)
outputImagePixelData[pos] = pixelData[y][x] ;

return outputImage ;
}

FloatCS 是 ColorSpace 类。当您需要特定的 ColorSpace(如 Lab、HLS 等)时,您必须创建自己的 ColorSpace 类。

public class FloatCS extends ColorSpace
{

private static final long serialVersionUID = -7713114653902159981L;

private ColorSpace rgb = ColorSpace.getInstance(ColorSpace.CS_sRGB) ;

public FloatCS(int type, int channel)
{
super(type, channel) ;
}


@Override
public float[] fromCIEXYZ(float[] pixel)
{
return fromRGB(rgb.fromCIEXYZ(pixel)) ;
}

@Override
public float[] fromRGB(float[] RGB)
{
return RGB ;
}

@Override
public float[] toCIEXYZ(float[] pixel)
{
return rgb.toCIEXYZ(toRGB(pixel)) ;
}

@Override
public float[] toRGB(float[] nRGB)
{
return nRGB ;
}
}

关于java - 将二维像素数组转换为 BufferedImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42615441/

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