复制代码 代码如下:<?php //文件头... header(“Content-type: image/png”); //创建真彩色白纸 $im = @imagecreatetruecolor(50, 20) or die(“建立图像失败”); //获取背景颜色 $background_color = imagecolorallocate($im, 255, 255, 255); //填充背景颜色(这个东西类似油桶) imagefill($im,0,0,$background_color); //获取边框颜色