用PHP畫乙個可以更換文字的按紐

2021-04-17 08:10:05 字數 1155 閱讀 6391

你總是花很多時間去做一些按紐吧,去設計乙個好的按紐背景全部用它吧!

文字可以隨意更換!

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 ?> 當中加入!

呼叫時寫下面的**:

s是的大小text是的文字

趕快試一試吧!

用php畫乙個藍底紅色的圓 php 怎麼畫乙個圓?

這篇文章主要介紹了php繪製圓形的方法,詳細分析了php繪製圖形的基本步驟與繪製圓形的實現方法,需要的朋友可以參考下 php繪圖的基本步驟,有四步 php.ini裡的 extension php gb2.dll 元件首先需要啟用 1 建立畫布 2 畫出所需要的影象 圓 直線 矩形 扇形 弧線.3 輸...

畫乙個空心圓 今天用「 」畫乙個空心的圓

題目描述 1 孟子曾說過 離婁之明 公輸子之巧,不以規矩,不能成方圓 而機房日子的潘老師最近有乙個苦惱,他希望能用手畫出乙個圓,但是他發現,用手畫出的圓始終不夠圓,為此,他決定使用點 規矩 問題分析與演算法設計 2 列印圓可利用圖形的左右對稱性。根據圓的方程 r r x x y y 可以算出圓上每一...

用path畫乙個抽象的樹葉

public class pathtestview extends view public pathtestview context context,attributeset attrs public pathtestview context context,attributeset attrs,i...