PHP PHP base64到Image

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP PHP base64到Image相关的知识,希望对你有一定的参考价值。

$img = imagecreatefromstring(base64_decode($string));
if($img != false)
{
   imagejpeg($img, '/path/to/new/image.jpg');
}

以上是关于PHP PHP base64到Image的主要内容,如果未能解决你的问题,请参考以下文章

php PHP:base64_image_save

php 上传Image Base64

PHP base64到图像

PHP已知图片base64流上传到服务器

使用Image header() & readfile()在PHP页面上显示一个Base64图像。

PHP将Base64图片转换为本地图片并保存