あなたはいつもいくつかのボタンを作成し、良いボタンの背景をデザインし、それをすべて使用するのに多くの時間を費やしています。
テキストは自由に変更できます!
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]); = abs($size[5]-$size[3]);
$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 タグ、特に と ? を追加できないことです。 > 参加してください!
呼び出し時に次のコードを記述します:
s は画像のサイズです text は画像のテキストです
急いでください試してみてください!
著者: ラスムス・レルドルフ