在我的函数中,我保存了从 base64 字符串解码的图像:
function saveImage(){
//magic...
define('UPLOAD_DIR', '../webroot/img/');
$base64string = str_replace('data:image/png;base64,', '', $base64string);
$base64string = str_replace(' ', '+', $base64string);
$data = base64_decode($base64string);
$id = uniqid();
$file = UPLOAD_DIR.$id.'.png';
$success = file_put_contents($file, $data);
}
上述功能正常工作,图像保存在指定文件夹中且未损坏。
在下一个函数中,我现在尝试将图像强制下载给用户:
function getChart($uniqid= null){
if($uniqid){
$this->layout = null;
header("Content-type: image/png");
header("Content-Disposition:attachment;filename='".$uniqid.".png'");
readfile('../webroot/img/'.$uniqid.'.png');
exit;
} else exit;
}
从服务器下载的图像已损坏,无法显示。在文本编辑器中打开下载的文件后,我注意到在最顶部添加了一个换行符。删除字符并保存文件后,它会正确打开并正确显示。
我怎样才能解决这个问题?