通过img标签上传到服务器后图像出现问题

时间:2019-02-28 08:23:47

标签: image codeigniter-3

应用切割工具后,我使用img标签上传了图片。

Image cutting tool

现在,我正在查看以下图像。该图像无法在任何图像查看器中打开。

Uploaded Image

控制器

$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中打开上述文件时出错

Error

现在我的问题是-如何解决此问题?

0 个答案:

没有答案