首頁 > 後端開發 > 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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板