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

时间:2013-02-17 22:43:32

标签: php gd

我的图像存储为字符串,以:

开头
data:image/png;base64,

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

我尝试了imagecreatefromstring(),但它似乎只接受没有data:image/etc附件的图片。

我该怎么办?

1 个答案:

答案 0 :(得分:5)

$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);