|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-06-03 06:59 UTC] sniper@php.net
[2001-06-27 22:34 UTC] sniper@php.net
[2004-10-06 21:42 UTC] jason at axsystech dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 12:00:01 2025 UTC |
Header("Content-type: image/gif"); $dims=ImageTTFBBox($size,0,$fontname,$text); $w=$dims[4]+$dims[6]; $h=-($dims[5]+$dims[3]); $im = imagecreate($w,$h); $bg = splitColor($background); $fg = splitColor($color); $back= ImageColorAllocate($im, $bg[0],$bg[1],$bg[2]); $fore= ImageColorAllocate($im, $fg[0],$fg[1],$fg[2]); ImageFilledRectangle($im,0,0,$w,$h,$back); ImageTTFText($im, $size, 0, -1 ,$h-2 , $fore, $fontname, $text); ImageGif($im); ImageDestroy($im);