>백엔드 개발 >PHP 튜토리얼 >php用gd库生成图片后上载有关问题

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

WBOY
WBOY원래의
2016-06-13 11:05:47808검색

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 />}

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.