I have a question about Rasters in BufferedImage. I have a byte array of image data, and I want to set that byte data as the new image data. I've already seen way way of doing this, pictured below:
BufferedImage bImageFromConvert = new BufferedImage(dimWidth, dimHeight, BufferedImage.TYPE_BYTE_GRAY);
byte[] bufferHolder = ((DataBufferByte) bImageFromConvert.getRaster().getDataBuffer()).getData();
System.arraycopy(imageInByte, 0, bufferHolder, 0, bufferHolder.length);//imageInByte is my byte array
ImageIO.write(bImageFromConvert, "bmp", new File(
directory + fileName + "_Compressed.bmp"));
However, while writing the data to the bmp, the final result isn't what was expected. I've been hammering my head over this project for days, and I want to see if I can put the byte data directly in the Raster to see if that makes a difference. I'm sorry if this question is a bit confusing, my brain is a bit fried from the hours of coding. Please let me know if there's any way I can make it more clear.
Thank you!
EDIT: Output image clilck
EDIT2: Side note, does anyone know why the bytes seem to be repeating like that in the output image? The code that separates out the high and low bits doesn't seem to be duplicating anything.
What you have done to copy a byte array into an image with a DataBufferByte is the fastest and safest way to do it. I do exactly the same thing and it works perfectly.
Consequently, if the result is not what you expect, then there are only two possibilities:
If you want to use the raster instead of the DataBuffer, you can do as follow.
But it must be exactly the same result of what you've done before. The Raster just manages en BufferedImage encoding for you. So I do think that you have an issue elsewhere (see the two points I cited).