我正在尝试将图像转换为PNG格式,我的数据是由LZW压缩的4波段32位TIFF图像。通过使用Java2D和JAI,我现在有未压缩的数据来表示CMYK空间中的颜色,并且可以使用与4波段32位格式相同的设置以tiff存储时导出和查看。
问题是当我尝试转换为其他格式(如PNG)时会生成零大小的数据,所以我想问一下是否有人在转换此类图像时有类似的经验?我将一些代码粘贴如下,供您参考,如果您发现任何错误也请更正,谢谢!!
int bands = 4;
int w = sizeParam.getHorizonPts();
int h = sizeParam.getVerticalPts();
ColorModel cm = new ComponentColorModel(new CMYKColorSpace(), new int[]{8,8,8,8},
false, false, Transparency.OPAQUE, DataBuffer.TYPE_FLOAT);
// Create WritableRaster with four bands
WritableRaster r = RasterFactory.createBandedRaster(
DataBuffer.TYPE_FLOAT, w, h, bands, null);
for (int i = 0; i < bandStreams.length; i++) {
int x, y;
x = y = 0;
byte[] uncomp = new byte[w * h];
decoder.decode(bandStreams[i], uncomp, h);
for (int pos = 0; pos < uncomp.length; pos++) {
r.setSample(x++, y, i, (float) (uncomp[pos] & 0xff) / 255);
if (x >= w) {
x = 0;
y++;
}
}
}
// Create TiledImage
TiledImage tiledImage = new TiledImage(0, 0, w, h, 0, 0,
RasterFactory.createBandedSampleModel(DataBuffer.TYPE_FLOAT, w,
h, bands), cm);
tiledImage.setData(r);
JAI.create("filestore", tiledImage, "test.tif", "TIFF");
答案 0 :(得分:0)
我最终通过将CMYK转换为RGB来解决这个问题,因此它可以生成PNG图像,在课程中使用以下代码,
// Create target image with RGB color.
BufferedImage result = new BufferedImage(w, h,
BufferedImage.TYPE_INT_RGB);
// Convert pixels from YMCK to RGB.
ColorConvertOp cmykToRgb = new ColorConvertOp(new CMYKColorSpace(),
result.getColorModel().getColorSpace(), null);
cmykToRgb.filter(r, result.getRaster());