Show image from Data URI scheme on Java panel

565 Views Asked by At

I am having trouble interpreting this question.

I receive a img in JSON formated in Base64, for web developers its only do: "".

How I can make it in Java?

2

There are 2 best solutions below

0
On BEST ANSWER
    //JSON funtion
    String cmd_getPhoto = so.cmd_getPhoto();

    //for remove ":"data:image\/png;base64,"
    String imageDataBytes = cmd_getPhoto.substring(cmd_getPhoto.indexOf(",") + 1);
    //for decode
    Base64 b = new Base64();
    byte[] decode = b.decode(imageDataBytes.getBytes());

    //create the stream
    InputStream stream = new ByteArrayInputStream(decode);

    try {
        //set the stream for a bufferedImage and do what your will with it
        BufferedImage bitmap = ImageIO.read(stream);
        jLabel6.setIcon(new ImageIcon(bitmap));
    } catch (IOException ex) {    }
2
On

You can use apache commons-codec for converting byte array. to base64 and from base64 to byte array. Actually, you can use guava. This artifact has base64 libraries and json. Just add com.google.guava in your maven's project.

For creating image, you can use:

InputStream in = new ByteArrayInputStream(yourbytearray);
BufferedImage bImageFromConvert = ImageIO.read(in);
ImageIO.write(bImageFromConvert, "jpg", new File("c:/yourimage.jpg"));