- <?php
- header("Content-type: image/png");
- $str = file_get_contents('txt.txt');//调用文本
- $height=200;//图片高度
- $width=200;//图片宽度
- $im=@imagecreate($width,$height) or die("Cannot Initialize new GD image stream");
- //颜色设置
- $background_color = imagecolorallocate($im, 255, 255, 255);//背景颜色
- $text_color= imagecolorallocate($im, 0, 0, 0);//文字颜色
- imagefill($im,0,0,$background_color);//填充背景
- $str=iconv("Gb2312","UTF-8",$str);//输入文字
- $font = 'arial.ttf';//字体文件
- ImageTTFText($im,15/*字体大小*/,0/*旋转*/,10/*左边距*/,20/*上边距*/,$text_color,$font,$str);
- imagepng($im);//输出图像
- imagedestroy($im);//清理
- ?>
复制代码
[ 本帖最后由 zyypp 于 2011-1-31 22:35 编辑 ] |