List of utility methods to do BufferedImage from String
BufferedImage | decodeToImage(String imageString, String pathFile) Decode string to image BufferedImage image = null; byte[] imageByte; try { imageByte = Base64.decodeBase64(imageString); ByteArrayInputStream bis = new ByteArrayInputStream(imageByte); image = ImageIO.read(bis); bis.close(); } catch (Exception e) { ... |