9

Okay, basically I've developed a simple image upload system. The user selects a local image (using the HTML5 File / FileReader API) and has the ability to crop it before confirming the result.

The final result is viewed in a canvas so to send it to the server I'm using toDataURL. The backend server is a NodeJS server which then needs to make a REST call to a Java server which will create an image file from the data and save it to disk.

The results of toDataURL are in the form: data:image/png;base64, ENCODED DATA.

What would I need on the Java server to convert the string into it's proper binary representation?

NRaf
  • 7,407
  • 13
  • 52
  • 91
  • 1
    See: http://stackoverflow.com/questions/469695/decode-base64-data-in-java – Simon Sarris Jan 09 '12 at 21:51
  • possible duplicate of [Uploading 'canvas' image data to the server](http://stackoverflow.com/questions/1590965/uploading-canvas-image-data-to-the-server) –  Jan 09 '12 at 21:53

4 Answers4

7

You need to remove the data:image/png;base64, part and base 64 decode the rest.

Community
  • 1
  • 1
copy
  • 3,301
  • 2
  • 29
  • 36
5
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.File;
import javax.imageio.ImageIO;
import javax.xml.bind.DatatypeConverter;

public class test {
    public static void main (String[] args){
     try{
            // remove data:image/png;base64, and then take rest sting
            String img64 = "64 base image data here";
        byte[] decodedBytes = DatatypeConverter.parseBase64Binary(img64 );
        BufferedImage bfi = ImageIO.read(new ByteArrayInputStream(decodedBytes));    
        File outputfile = new File("saved.png");
        ImageIO.write(bfi , "png", outputfile);
        bfi.flush();
     }catch(Exception e)
         {  
          //Implement exception code    
     }

    }
}
M.Sanad
  • 51
  • 1
  • 3
1

You have to replace space with + if your base64Image have space char, then you have to remove data:image/png;base64, from the beginning of the base64Image. Unless you replace space char, you can't get correct Image. then you can use Base64 decode

yourBase64String = yourBase64String.replace(' ', '+');

yourBase64String = yourBase64String.substring(22);

Solomon Tesfaye
  • 186
  • 2
  • 10
1

Once you Base64-decode the string, you will have the binary image, in the form of a PNG file. See this SO question for details on how to decode a base64 string into bytes.

Community
  • 1
  • 1
dgvid
  • 26,293
  • 5
  • 40
  • 57