在我的项目中,我正在拍摄图像的json输入并进行转换 像这样.. ..
$json = $_POST['output'];
$img = sigJsonToImage($json);//convert json to image
imagepng($img, 'signimage.png');//it saves the image correctly in local folder
但是当我想通过代码在浏览器上显示它时
header('Content-Type: image/png');
imagepng($img);
它会出现图像包含错误并且无法显示的错误。
请帮我解决这个问题,谢谢