[PHP] 纯文本查看 复制代码
<?php
Header("Content-type: image/png"); //输出一个 PNG 图片文件
$im = imagecreate(440,100); //初始化图形区域
$black = imagecolorallocate($im, 0,0,0); //定义黑色
$white = imagecolorallocate($im, 255,255,255); //定义白色
$yellow = imagecolorallocate($im,255,255,0); //定义黄色
$blue = imagecolorallocate($im,0,0,255); //定义蓝色
$red = imagecolorallocate ($im,255,0,0); //定义红色
$zi = imagecolorallocate($im,255,0,255); //定义紫色
$color = $blue; //定义$color 变量为蓝色
$font = "wingding.ttf"; //定义字体文件
imagefilledrectangle($im, 5, 5, 435, 95, $color); //用蓝色画一个矩形
imagestring($im,5,15,10,"I:send",$white); //用白色写字符
$s = chr(0xf0).chr(90);
$s = iconv('ucs-2', 'utf-8', $s);
for($i = 0;$i < 5;$i++) //用循环画字符
{
imagettftext($im,40,0,90 + $i * 65,57,$yellow,$font,$s); //画出字符用黄色及字体
}
imagestring($im,5,280,65,"to:YOU As a gift",$white); //用白色写字符
imagestring($im,5,305,80,date("Y").".".date("m").".".date("d"),$white); //写出当前日期
imagepng($im); //创建图形
imagedestroy($im); //关闭图形
?>