I'm trying to save image encoded by base64 using Intervention Image, laravel-5 Exception told me that "Unable to init from given binary data". anyone can help?
$png_url = "user-".time().".png";
$path = "/public/".$png_url;
Image::make(base64_encode($request['image']))->save($path);