应用切割工具后,我使用img
标签上传了图片。
现在,我正在查看以下图像。该图像无法在任何图像查看器中打开。
控制器
$id = strtoupper($this->input->post('id',true));
$img = str_replace("data:image/png;base64,", "", $this->input->post("base64image",true));
$data = base64_decode($img);
$file = "./images/users/$id.png";
echo file_put_contents($file, $data) ? json_encode(array("response"=>1)) : json_encode(array("response"=>0));
在Adobe Photoshop中打开上述文件时出错
现在我的问题是-如何解决此问题?