大体思路: 代码部分: <?php //1.创建画布 $img = imagecreatetruecolor(100,30); //2.设置颜色 值越小,颜色越深 $color1 = imagecolorallocate($img,rand(100,255),rand(150,255),rand(170,255)); $color2 = imagecolorallocate($img,rand(0,100),rand(0,100),rand(0,100)); //3.填充矩形 imagefill…