使用php怎么绘制一个骰子图案-创新互联
今天就跟大家聊聊有关使用php怎么绘制一个骰子图案,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
创新互联是一家专注于成都网站建设、网站设计和绵阳电信机房的网络公司,有着丰富的建站经验和案例。具体如下:
header('Content-Type:image/png'); $img = imagecreatetruecolor(200, 200); $white = imagecolorallocate($img, 255, 255, 255); $grey = imagecolorallocate($img, 100, 100, 100); $blue = imagecolorallocate($img, 0, 102, 255); $red = imagecolorallocate($img, 255, 0, 0); imagefill($img, 0, 0, $white); imageline($img, 10, 20, 10, 180, $grey); imageline($img, 10, 180, 20, 190, $grey); imageline($img, 20, 190, 180, 190, $grey); imageline($img, 180, 190, 190, 180, $grey); imageline($img, 190, 180, 190, 20, $grey); imageline($img, 190, 20, 180, 10, $grey); imageline($img, 180, 10, 20, 10, $grey); imageline($img, 20, 10, 10, 20, $grey); //1 imagefilledarc($img, 100, 100, 50, 50, 0, 0, $blue, IMG_ARC_PIE); //2 //imagefilledarc($img, 60, 100, 40, 40, 0, 0 , $red, IMG_ARC_PIE); //imagefilledarc($img, 140, 100, 40, 40, 0, 0 , $red, IMG_ARC_PIE); //3 //imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); //imagefilledarc($img, 100, 100, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); //imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); //4 //imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE); //imagefilledarc($img, 50, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE); //imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE); //imagefilledarc($img, 150, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE); //5 //imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); //imagefilledarc($img, 50, 150, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); //imagefilledarc($img, 100, 100, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); //imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); //imagefilledarc($img, 150, 50, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); //6 //imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE); //imagefilledarc($img, 50, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE); //imagefilledarc($img, 100, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE); //imagefilledarc($img, 100, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE); //imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE); //imagefilledarc($img, 150, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE); imagepng($img); imagedestroy($img);
可以绘制出1-6点各点图案,1/3/5颜色是蓝色,2/4/6是红色,效果图如下:
看完上述内容,你们对使用php怎么绘制一个骰子图案有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注创新互联行业资讯频道,感谢大家的支持。
本文名称:使用php怎么绘制一个骰子图案-创新互联
标题来源:http://myzitong.com/article/dpsjph.html