php – imagecreatefromstring使用带有数据的图像:image / png; base64,

我有一个存储为字符串的图像,它以:

data:image/png;base64,

我需要将它转换为普通图像,以便与GD一起使用.

我试过imagecreatefromstring()但它似乎只接受没有数据的图像:image / etc pefix.

我能怎么做?

解决方法:

$exploded = explode(',', $data, 2); // limit to 2 parts, i.e: find the first comma
$encoded = $exploded[1]; // pick up the 2nd part
$decoded = base64_decode($encoded);
$img_handler = imagecreatefromstring($decoded);
上一篇:在PHP中查找图像边框颜色的算法


下一篇:php – 将从光盘中删除imagedestroy()