What is the right way to convert raw array of bytes into Image in Java SE. array consist of bytes, where each three bytes represent one pixel, with each byte for corresponding RGB component.
Can anybody suggest a code sample?
Thanks, Mike
|
|
Assuming you know the height and width of the image.
Roughly. This assumes the pixel data is encoded as a set of rows; and that the length of colors is 3 * width * height (which should be valid). |
|||||||||||||||
|
|
You can do this with Raster class, like this. It's better because it does not require iterating and copying of byte arays
|
|||
|
|
|
There is a setRGB variant which accepts an int array of RGBA values:
The performance characteristics is similar to CoderTao's solution. |
|||
|
|