日期:2014-05-17 浏览次数:20372 次
<?php Header('Content-type: image/png'); putenv('GDFONTPATH=C:\WINDOWS\Fonts'); $button_text='Button按钮'; $button_text=$button_text.rand(30, 50); $im=imagecreatetruecolor(400, 200); $black=imagecolorallocate($im, 0, 0, 0); $white=imagecolorallocate($im, 255, 255, 255); imagefill($im, 0, 0, $black); imagettftext($im,30,30, 0,150, $white,'MSYH.TTF', $button_text); imagepng($im);//使用imagepng($im,'x.png');可以生成x.png,图片也有文字。 imagedestroy($im); ?>