$im = imagecreatetruecolor(width, height);
,width
和 height
指定画布的宽度和高度(以像素为单位)。,2. 设置颜色,$color = imagecolorallocate($im, red, green, blue);
,imagecolorallocate()
函数创建指定颜色并返回一个颜色索引。,red
, green
和 blue
指定颜色的红色、绿色和蓝色分量(0-255)。,3. 绘制线段,imageline($im, x1, y1, x2, y2, $color);
,$im
是画布图像资源。,x1
, y1
和 x2
, y2
指定线段的起点和终点的坐标。,$color
是线段的颜色索引。,示例代码:,提示:,确保 x1
, y1
, x2
和 y2
的值在画布范围内。可以使用
imagedashedline()
函数绘制虚线线段。使用
imagecolortransparent()
函数将背景设为透明。使用
imagefilledpoly<strong class="keylink">Go</strong>n()
函数绘制填充的图形。使用
imagestring()
函数在图像上绘制文本。,