欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

用PHP产生动态的影像图

程序员文章站 2022-03-14 09:47:11
很多人不了解  php 可以产生非html的资料.这是对产生影像图非常有用的.可以从 database 产生一个简单的广告横图或更简单只产生一个图形按钮...
很多人不了解  php 可以产生非html的资料.这是对产生影像图非常有用的.可以从 database 产生一个简单的广告横图或更简单只产生一个图形按钮 .

我用 ttf 字型在以下的范例中  
我通常取名作 'button.php3':

#######################################################
-----button.php3------
<?
  header("content-type: image/gif");
  if(!isset($s)) $s=11;
  $size = imagettfbbox($s,0,"fonts/times.ttf",$text);
  $dx = abs($size[2]-$size[0]);
  $dy = abs($size[5]-$size[3]);
  $xpad=9;
  $ypad=9;
  $im = imagecreate($dx+$xpad,$dy+$ypad);
  $blue = imagecolorallocate($im, 0x2c,0x6d,0xaf);
  $black = imagecolorallocate($im, 0,0,0);
  $white = imagecolorallocate($im, 255,255,255);
  imagerectangle($im,0,0,$dx+$xpad-1,$dy+$ypad-1,$black);
  imagerectangle($im,0,0,$dx+$xpad,$dy+$ypad,$white);
  imagettftext($im, $s, 0, (int)($xpad/2)+1, $dy+(int)($ypad/2), $black, "fonts/times.ttf", $text);
  imagettftext($im, $s, 0, (int)($xpad/2), $dy+(int)($ypad/2)-1, $white, "fonts/times.ttf", $text);
  imagegif($im);
  imagedestroy($im);
?>
#######################################################
很重要一点是你不能在这档案中放任何html tags.也不能有空白行在 <?和 ?> tag 之前或之後. 如果你用这段script後看到一个不完整的影像, 表示你可能在php标签以外误打了字元.

以上的 script 可以由此语法在网页中叫出来: <img src="button.php3?s=36&text=php+is+cool">  

#######################################################
----test.php-----  

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<title>new page 1</title>
</head>

<body>  

<img src="button.php3?s=36&text=php+is+cool">  

</body>
</html>
#######################################################  

test.php结果会像这样: .

's' 参数是设定字型大小 .  

这是当 s=18 时:  

注i:
字型路径 "/fonts/times.ttf" 可由windows/fonts目录下取得 tims.ttf 字型档 copy 至你网站的目录 fonts下即可测试 至於中文的表现 尚待各位网友提供心得  

注意 我先画了一个黑色方块区再用白色位移产生 3d 效果.也陬l法在浅色背景中看出来 但你可以把背景色改为深色看看此效果. 字型也做了同样效果表现立体感.  

你要先确定你的安装 php 时有设定支援  gd 和 ttf. 可参考  php faq . 我建议可以 copy libgd.a 到  /usr/local/lib 和 gd*.h 相关档案到  /usr/local/include 然後   
'make install' for freettf library.  

可以在这http://rover.wiesbaden.netsurf.de/~kikita/ 找到钗httf 字型哦!

注:

以下的原始码改进了上面的弁?可多行文字显示:
#######################################################
--------------button.php-----------------
<?

header("content-type: image/jpeg");
if(!isset($bgred)) $bgred=0;
if(!isset($bggreen)) $bggreen=51;
if(!isset($bgblue)) $bgblue=153;
if(!isset($chred)) $chred=255;
if(!isset($chgreen)) $chgreen=255;
if(!isset($chblue)) $chblue=255;
if(!isset($shadow)) $shadow="yes";
if(!isset($wrappos)) $wrappos=20;
if(!isset($crop)) $crop=2.2;
if(!isset($jpegquality)) $jpegquality=80;
if(!isset($s)) $s=11;
$savetext=$text;
$text=wordwrap($text,$wrappos," ",0);
if (!isset($font)) $fontname="/www/ttfonts/arialbd.ttf";
else
$fontname="/www/ttfonts/".$font.".ttf";
$size = imagettfbbox($s,0,$fontname,$text);
$dx = abs($size[2]-$size[0]);
$dy = abs($size[5]-$size[3]);
$upper=abs($size[5]);
$under=$size[1];
$th=$upper-$under;
$xpad=9;
if (substr_count($text,chr(13))>=1)
{
  $mult=(substr_count($text,chr(13)));
  $ypad=($mult*$crop*$s)+$s;
}
else $ypad=($crop-2)*$s;
$im = imagecreate($dx+$xpad,$th+$ypad);
$color = imagecolorallocate($im, $bgred,$bggreen,$bgblue);
$black = imagecolorallocate($im, 0,0,0);
$fontcolor = imagecolorallocate($im, $chred,$chgreen,$chblue);
imagerectangle($im,0,0,$dx+$xpad-1,$th+$ypad-1,$black);
imagerectangle($im,0,0,$dx+$xpad,$th+$ypad,$white);
if ($shadow=="yes")
imagettftext($im, $s, 0, (int)($xpad/2)-2+1, $th+2+(int)($ypad/2)-3, $black, $fontname, $text);
imagettftext($im, $s, 0, (int)($xpad/2)-2, $th+2+(int)($ypad/2)-1-3, $fontcolor, $fontname, $text);
imagejpeg($im,"",$jpegquality);
imagedestroy($im);

?>
#######################################################
这可以下面这个 form 来产生:
#######################################################
----------test.php--------------------
<html>

<head>
<title>new page 1</title>
</head>

<body>

<form method="post" action="button.php">
<p>文字<input type="text" name="text" size="60"></p>
<p>大小<input type="text" name="s" size="6" value="14"></p>
<p>断句的位置(wrap break position) <input type="text" name="wrappos" size="3" value="20"></p>
<p>背景颜色</p>
<p>红色<input type="text" name="bgred" size="6" value="0">     
     绿色<input type="text" name="bggreen" size="8" value="51">     
      蓝色<input type="text" name="bgblue" size="7" value="153"></p>
<p>字元颜色</p>
<p>红色 <input type="text" name="chred" size="6" value="255">   
      绿色 <input type="text" name="chgreen" size="8" value="255">     
     蓝色 <input type="text" name="chblue" size="7" value="255"></p>
<p>字型 <input type="text" name="font" size="20" value="arialbd"></p>
<p>阴影 <input type="radio" value="yes" checked name="shadow">是  
               <input type="radio" name="shadow" value="no">否</p>
<p>crop size <input type="text" name="crop" size="20" value="2.2"></p>
<p>jpeg 品质 (0-100) <input type="text" name="jpegquality" size="20" value="80"></p>
<p><input type="submit" value="submit" name="b1">
      <input type="reset" value="reset" name="b2"></p>
</form>
</body>
</html>
#######################################################

或是直接像上例一样呼叫:  

#######################################################
----test.php-----  

<html>
<head>
<title>new page 1</title>
</head>

<body>  

<img src="button.php?s=36&text=php+is+cool">  

</body>
</html>