Я пытаюсь преобразовать мою строку изображения base64 в файл изображения. Это моя строка Base64:
http://pastebin.com/ENkTrGNG
Используя следующий код, чтобы преобразовать его в файл изображения:
function base64_to_jpeg( $base64_string, $output_file ) { $ifp = fopen( $output_file, "wb" ); fwrite( $ifp, base64_decode( $base64_string) ); fclose( $ifp ); return( $output_file ); } $image = base64_to_jpeg( $my_base64_string, 'tmp.jpg' );
Но я получаю ошибку invalid image
, что здесь не так?
Проблема в том, что data:image/png;base64,
включены в кодированное содержимое. Это приведет к недопустимым данным изображения, когда функция base64 его декодирует. Удалите эти данные в функции перед декодированием строки, например.
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; }
Вам нужно удалить часть, которая сообщает data:image/png;base64,
в начале данных изображения. После этого появляются фактические данные base64.
Просто base64_decode()
все до и включая base64,
(перед вызовом base64_decode()
для данных), и все будет в порядке.
может быть, так
function save_base64_image($base64_image_string, $output_file_without_extension, $path_with_end_slash="" ) { //usage: if( substr( $img_src, 0, 5 ) === "data:" ) { $filename=save_base64_image($base64_image_string, $output_file_without_extentnion, getcwd() . "/application/assets/pins/$user_id/"); } // //data is like: data:image/png;base64,asdfasdfasdf $splited = explode(',', substr( $base64_image_string , 5 ) , 2); $mime=$splited[0]; $data=$splited[1]; $mime_split_without_base64=explode(';', $mime,2); $mime_split=explode('/', $mime_split_without_base64[0],2); if(count($mime_split)==2) { $extension=$mime_split[1]; if($extension=='jpeg')$extension='jpg'; //if($extension=='javascript')$extension='js'; //if($extension=='text')$extension='txt'; $output_file_with_extension=$output_file_without_extension.'.'.$extension; } file_put_contents( $path_with_end_slash . $output_file_with_extension, base64_decode($data) ); return $output_file_with_extension; }
if($_SERVER['REQUEST_METHOD']=='POST'){ $image_no="5";//or Anything You Need $image = $_POST['image']; $path = "uploads/$image_no.png"; file_put_contents($path,base64_decode($image)); echo "Successfully Uploaded"; }