Lines Matching refs:tile
8 $tile = imagecreate(10,10);
9 $red = imagecolorallocate($tile,0xff,0,0);
10 $green = imagecolorallocate($tile,0,0xff,0);
11 $blue = imagecolorallocate($tile,0,0,0xff);
12 $other = imagecolorallocate($tile,0,0,0x2);
13 imagefilledrectangle($tile,0,0,2,10,$red);
14 imagefilledrectangle($tile,3,0,4,10,$green);
15 imagefilledrectangle($tile,5,0,7,10,$blue);
16 imagefilledrectangle($tile,8,0,9,10,$other);
17 imagecolortransparent($tile,$blue);
18 imagesettile($im,$tile);
29 imagedestroy($tile);