基本画图步骤:
绘制图像的方法:
绘制图像的方法:
绘制一个像素点:imagesetpixel(image, x, y, color)
绘制一条线:imageline(image, x1, y1, x2, y2, color);
绘制一个矩形:imagerectangle(image, x1, y1, x2, y2, color);
绘制一个矩形并填充:imagefilledrectangle(image, x1, y1, x2, y2, color);
绘制一个多边形:imagepolygon(image, points, num_points, color)
绘制一个多边形并填充:imagefilledpolygon(image, points, num_points, color)
绘制一个椭圆:imageellipse(image, cx, cy, width, height, color)
绘制一个椭圆并填充:imagefilledellipse(image, cx, cy, width, height, color)
绘制一个椭圆弧,并填充:imagefilledarc(image, cx, cy, width, height, start, end, color, style)
水平地画一行字符串:imagestring(image, font, x, y, string, color)
垂直地画一行字符串:imagestringup(image, font, x, y, string, color)
水平地画一个字符:imagechar(image, font, x, y, c, color)
垂直地画一个字符:imagecharup(image, font, x, y, c, color)
用truetype字符向图像画一个字符串:imagettftext(image, size, angle(角度), x, y, color, fontfile, text)
图片裁切和缩放