如何从图像资源创建base64编码的字符串
我已经通过AJAX向PHP发送了base64编码" title="base64编码">base64编码的字符串,并创建了一个图像资源imagecreatefromstring
-一切都很好。
现在,我想在调整图像大小后获得base64编码的字符串,但是我无法找到一个函数来获取base64encoded字符串。
回答:
取自http://www.php.net/manual/zh/book.image.php#93393
$image = imagecreatefromstring($file);// start buffering
ob_start();
imagepng($image);
$contents = ob_get_clean();
echo "<img src='data:image/png;base64,".base64_encode($contents)."' />";
imagedestroy($image);
以上是 如何从图像资源创建base64编码的字符串 的全部内容, 来源链接: utcz.com/qa/405941.html