标签: java image
我需要"打印"来自字节数组的图像,我不想将其保存为文件,我只想将字节数组转换为图像。感谢。
答案 0 :(得分:1)
BufferedImage im = ImageIO.read(new ByteArrayInputStream(bytes));