这篇简单介绍下PHP的GD库画图,下一篇会带领大家具体实现一个图片验证码操作。
GD库画图分为六步:
$lightyellow= imagecolorallocate($img,227,227,162);
$white = imagecolorallocate($img,255,255,255);
第二三参数为圆心坐标,第四个参数为椭圆的宽度,第五个坐标为椭圆的高度。
header('Content-Type:image/png');imagejpeg($img);
imagedestroy($img);
下一篇 图片验证码完整事例