用PHP畫一個可以更換文字的按紐
來源:互聯網
上載者:User
你總是花很多時間去做一些按紐吧,去設計一個好的按紐背景全部用它吧!
文字可以隨意更換!
<?
Header( "Content-type: image/gif");
if(!isset($s)) $s=11;
//times.tif可以是你喜歡的任何字型
$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);
//設定R,G,B
$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標記,尤其不允許在<? and ?> 當中加入!
調用時寫下面的代碼:
<IMG SRC="button.php3?s=36&text=PHP+is+Cool">
s是圖片的大小 text是圖片的文字
趕快試一試吧!
作者:Rasmus Lerdorf