Convert Base64 string to an image file? [duplicate] Convert Base64 string to an image file? [duplicate] php php

Convert Base64 string to an image file? [duplicate]


The problem is that data:image/png;base64, is included in the encoded contents. This will result in invalid image data when the base64 function decodes it. Remove that data in the function before decoding the string, like so.

function base64_to_jpeg($base64_string, $output_file) {    // open the output file for writing    $ifp = fopen( $output_file, 'wb' );     // split the string on commas    // $data[ 0 ] == "data:image/png;base64"    // $data[ 1 ] == <actual base64 string>    $data = explode( ',', $base64_string );    // we could add validation here with ensuring count( $data ) > 1    fwrite( $ifp, base64_decode( $data[ 1 ] ) );    // clean up the file resource    fclose( $ifp );     return $output_file; }


An easy way I'm using:

file_put_contents($output_file, file_get_contents($base64_string));

This works well because file_get_contents can read data from a URI, including a data:// URI.


You need to remove the part that says data:image/png;base64, at the beginning of the image data. The actual base64 data comes after that.

Just strip everything up to and including base64, (before calling base64_decode() on the data) and you'll be fine.