PHP新手上路(十四) 其他杂项,PHP新手上路(十四) 其他杂项
【 tulaoshi.com - PHP 】
其他杂项
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/php/)
13.1 生成图像
PHP可以操作处理图像。如果你已经安装了GD库,你甚至可以利用PHP生成图像。
<?
Header("Content-type: image/gif");
$string=implode($argv," ");
$im = imagecreatefromgif("images/button1.gif");
$orange = ImageColorAllocate($im, 220, 210, 60);
$px = (imagesx($im)-7.5*strlen($string))/2;
ImageString($im,3,$px,9,$string,$orange);
ImageGif($im);
ImageDestroy($im);
?
(译者注:以上代码段缺少注释,请读者参考PHP Manual的图像处理函数部分)
这段代码在其他页面中通过以下标记<img src="http://img.tuloahsi.com/attachment/portal"
来源:http://www.tulaoshi.com/n/20160129/1489804.html
看过《PHP新手上路(十四) 其他杂项》的人还看了以下文章 更多>>