本文讲解常用GD函数的应用 1.一个简单的图像 我们先看一个例子: <?php $w = 200; $h = 200; $img = imagecreatetruecolor($w,$h); $white = imagecolorallocate($img,255,255,255); $blue = imagecolorallocate($img,0,0,64); imagefill($img,0,0,$blue); imageline($img,0,0,$w,$h,$white); image…