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