Table of Contents [hide]
In this article, we will see how to convert BufferedImage to Byte Array in Java.
💡 Outline
To convert BufferedImage to byte array, you can use below code:
Java BufferedImage to Byte Array
Here are steps to convert BufferedImage
to Byte Array
in java:
- Create instance of ByteArrayOutputStream
baos
. - Call
ImageIo.write()
withbufferedImage
, formatName such aspng
,jpg
etc. andbaos
as parameters - Get byte array from ByteArrayOutputStream
baos
by callingtoByteArray()
method.
Here is complete program:
Convert BufferedImage to byte[] without writing to disk
In case you have large amount of BufferedImages and do not want to write to disk, you can use following code as per this stackoverflow thread.
{!{pre code="java" title="BufferedImage to byte[] without writing to disk"}!}czo5MzpcIg0KYnl0ZVtdIGltYWdlQnl0ZXMgPSAoKERhdGFCdWZmZXJCeXRlKSBidWZmZXJlZEltYWdlLmdldERhdGEoKS5nZXREYXR7WyYqJl19YUJ1ZmZlcigpKS5nZXREYXRhKCk7DQpcIjt7WyYqJl19{!{/pre}!}
Above code will create copy of image. If you are looking for direct reference you can use bufferedImage.getRaster().getDataBuffer()
.
That’s all about how to Convert BufferedImage to Byte Array in Java.