使用JNI将图像从C ++发送到Java

时间:2015-06-16 17:26:41

标签: java c++ bitmap java-native-interface byte

我正在尝试使用JNI将图像从C ++发送到java。该图像是在C ++中创建的位图,我使用GetDIBits将像素投射到char*。使用C ++将图像保存到文件时没有问题,但是当将像素发送到Java时,图像模糊不清。 JavaDocs说我必须对BufferedImage使用3BYTE_BGR,但我觉得压缩有问题

C ++位图

将Java转换为BufferedImage,宽度和高度也通过jni

接收

这是图像的结果

1 个答案:

答案 0 :(得分:1)

鉴于bi.bitCount为32,对BufferedImage使用3BYTE_BGR格式是不正确的:假设每三个字节有一个像素,而不是每四个字节一个像素。相反,请使用TYPE_INT_BGR。正如我们在评论中所讨论的那样,您的DataBuffer需要是一个DataBufferInt,您可以使用ByteBuffer和IntBuffer来完成,如下面的代码片段所示:

BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_BGR);
IntBuffer intBuffer = ByteBuffer.wrap(img).asIntBuffer();
int[] imgInts = new int[img.length * Byte.SIZE / Integer.SIZE];
intBuffer.get(imgInts);
image.setData(Raster.createRaster(image.getSampleModel(), new DataBufferInt(imgInts, imgInts.length), new Point()));