我的图像存储为字符串,以:
开头data:image/png;base64,
我需要将其转换为普通图像,以便与GD一起使用。
我尝试了imagecreatefromstring()
,但它似乎只接受没有data:image/etc
附件的图片。
我该怎么办?
答案 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);