tp5.1 读取png 并响应输出到浏览器

 ob_end_clean();
 ob_start();
 //读取图像到缓冲区
 imagepng(imagecreatefrompng('.'.$code_path));
 //得到当前缓冲区的内容并删除缓冲区内容
 $content = ob_get_clean();
 //销毁图片
 if(file_exists('.'.$code_path)){
 unlink('.'.$code_path);
 }
 //返回图片
 return response($content, 200, ['Content-Length' => strlen($content)])->contentType('image/png');
posted @ 2020-07-10 17:00  makalo  阅读(475)  评论(0编辑  收藏  举报