code123

写下我的学习记录,保存我的有用代码。

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
header("Content-type: image/png");
$im = imagecreatetruecolor(280, 40);
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
$mycolor = imagecolorallocate($im, 32, 32,32);
imagefilledrectangle($im, 0, 0, 399, 50, $white);


$text = '13812520520';
$font = 'georgiab.ttf';
$filename= uniqid();
imagettftext($im,28, 0, 10, 30, $mycolor, $font, $text);
imagejpeg($im, 'file/mobile/'.$filename.'.jpg');
imagepng($im);
imagedestroy($im);

 

备份

 

posted on 2013-10-08 12:55  codebox  阅读(227)  评论(0编辑  收藏  举报