首页 > 后端开发 > php教程 > php用gd库生成图片后上载有关问题

php用gd库生成图片后上载有关问题

WBOY
发布: 2016-06-13 11:05:47
原创
807 人浏览过

php用gd库生成图片后下载问题
是这样的,我在用GD库生成图片后,不保存图片能直接下载吗? 试了一个早上还是不行…

image.php

//创建一个真彩画布<br />$image = imagecreatetruecolor(400,190);<br />//背景创建颜色<br />$green = imagecolorallocate($image,255,255,255);<br />//填充画布颜色<br />imagefill($image,0,0,$green);<br />//输出图片<br />header("Content-Type: image/jpeg");<br />imagejpeg($image);<br />//销毁资源<br />imagedestroy($image);
登录后复制


index.php

<a href="imagedown.php?filename=image.php"><img  src="image.php" / alt="php用gd库生成图片后上载有关问题" ></a>
登录后复制


imagedown.php

<br />if(isset($_GET['filename'])){<br />????????//var_dump(getimagesize($_GET['filename']));<br />????????download($_GET['filename']);<br />????}<br />????function download($fileName){<br />????????header("Content-Type: image/jpeg");<br />????????header('Content-Disposition: attachment; filename="'.$fileName.'"');<br />????????header('Content-Length: '.filesize($fileName));<br />????????readfile($fileName);<br />????}<br />
登录后复制

------解决方案--------------------
不可以的,必须经过图片落地这一过程。php的gd库貌似不支持内存直接读取生成的图片内容,只能保存到本地再读取。
建议改写gd库,提供获取图片内容函数。
------解决方案--------------------
这样写
download('x.jpg');<br /><br />function image() {<br />  //创建一个真彩画布<br />  $image = imagecreatetruecolor(400,190);<br />  //背景创建颜色<br />  $green = imagecolorallocate($image,255,255,0);<br />  //填充画布颜色<br />  imagefill($image,0,0,$green);<br />  //输出图片<br />  //header("Content-Type: image/jpeg");<br />  imagejpeg($image);<br />  //销毁资源<br />  imagedestroy($image);<br />}<br /><br />function download($fileName){<br />  ob_start();<br />  image();<br />  $s = ob_get_clean();<br />  header("Content-Type: image/jpeg");<br />  header('Content-Disposition: attachment; filename="'.$fileName.'"');<br />  header('Content-Length: '.strlen($s));<br />  echo $s;<br />}
登录后复制

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板