从调色板创建图像的最佳方法Color array + indice byte array?

时间:2014-05-30 22:35:08

标签: java image indices palette

我正在开发一个Java组件来显示一些视频和视频的每一帧,我的解码器给了我一个Color [256]调色板+一个宽度*高度字节像素索引数组。以下是我现在创建BufferedImage的方法:

byte[] iArray = new byte[width * height * 3];
int j = 0;
for (byte i : this.lastFrameData) {
    iArray[j] = (byte) this.currentPalette[i & 0xFF].getRed();
    iArray[j + 1] = (byte) this.currentPalette[i & 0xFF].getGreen();
    iArray[j + 2] = (byte) this.currentPalette[i & 0xFF].getBlue();
    j += 3;
}
DataBufferByte dbb = new DataBufferByte(iArray, iArray.length);
ColorModel cm = new ComponentColorModel(ColorSpace.getInstance(ColorSpace.CS_sRGB), new int[] { 8, 8, 8 }, false, false, Transparency.OPAQUE, DataBuffer.TYPE_BYTE);
return new BufferedImage(cm, Raster.createInterleavedRaster(dbb, width, height, width * 3, 3, new int[] { 0, 1, 2 }, null), false, null);

这样可行,但看起来很难看,我确信有更好的方法。那么创建BufferedImage的最快方法是什么呢?

/编辑:我已尝试直接在我的BufferedImage上使用setRGB方法,但导致性能比上述差。

由于

1 个答案:

答案 0 :(得分:0)

我会这样做:

 int[] imagePixels = new int[width * height]

 int j = 0;
 for (byte i : this.lastFrameData) {
    byte r = (byte) this.currentPalette[i & 0xFF].getRed();
    byte g = (byte) this.currentPalette[i & 0xFF].getGreen();
    byte b = (byte) this.currentPalette[i & 0xFF].getBlue();
    imagePixels[j] = 0xFF000000 | (r<<16) | (g<<8) | b;
    j++;
 }

 BufferedImage result = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
 result.setRGB(0, 0, width, height, imagePixels , 0, width);
 return result;

可能还有更快的测试它。