I want to convert an image to byte array and vice versa. Here, the user will enter the name of the image (.jpg) and program will read it from the file and will convert it to a byte array.
|
|
|
BufferedImage consists from two main classes (Raster & ColorModel), Raster itself consists from two classes, the one related to image content is DataBufferByte, the other class for pixel color. if you want the data from DataBufferByte, use:
now you can process these bytes by hide text in lsb for example, or make any processing you want. |
|||
|
|
|
|||
|
|
|
If you are using JDK 7 you can use the following code..
|
||||
|
|
|
Try this code snippet
|
||||
|
|
|
Check out
Note: I think you don't want to read the raw bytes, because then you have to deal with all the compression/decompression. |
|||
|
|
|
I think the best way to do that is to first read the file into a byte array, then convert the array to an image with ImageIO.read() |
|||
|
|
|
Here is a complete version of code for doing this. I have tested it. The
|
|||
|
|

