我一直在尝试使用此代码将图像转换为 base64,然后再次将其保存到图像文件到磁盘,但最后我得到了一个包含无效图像文本的图像文件。
<?php
$b64image = base64_encode(file_get_contents('1.png'));
file_put_contents('abc.png',$b64image);
?>
我一直在尝试使用此代码将图像转换为 base64,然后再次将其保存到图像文件到磁盘,但最后我得到了一个包含无效图像文本的图像文件。
<?php
$b64image = base64_encode(file_get_contents('1.png'));
file_put_contents('abc.png',$b64image);
?>