清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
<?php
header('Content-type: image/gif');
$image = imagecreate( 400, 200 );
$red = imagecolorallocate($image, 255,0,0);
$blue = imagecolorallocate($image, 0,0,255 );
$font = 'ARIALBD.TTF';
imageTTFtext( $image, 50, 0, 20, 100, $blue, $font, 'outofmemory.cn' );
imagegif($image);
?>