我尝试将二进制数据转换为图像格式,然后将此图像保存在文件夹中。我正在使用imagesavealpha
函数,但它无效。
我的代码如下:
<?php
$image_data=file_get_contents('Logo.png');
$encoded_image=base64_encode($image_data);
$decoded_image=base64_decode($encoded_image);
$im = imagecreatefromstring($decoded_image);
header('Content-Type: image/png');
imagepng($im);
$fileName ='/image/'.date('ymdhis').'.png';
imagealphablending($im,false);
imagesavealpha($im, true);
?>
答案 0 :(得分:6)
$data = base64_decode($data);
file_put_contents('/tmp/image.png', $data);
或
file_put_contents('img.png', base64_decode($base64string));