当前位置: 移动技术网 > IT编程>开发语言>PHP > php实现的中秋博饼游戏之绘制骰子图案功能示例

php实现的中秋博饼游戏之绘制骰子图案功能示例

2017年12月01日  | 移动技术网IT编程  | 我要评论

本文实例讲述了php实现的中秋博饼游戏之绘制骰子图案功能。分享给大家供大家参考,具体如下:

最近公司中秋博饼(在厦门),自己没事也想玩玩,所以就想动手写了一个纯php实现的中秋博饼游戏,既然要纯php实现,就要用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图形与图片操作技巧汇总》、《php基本语法入门教程》、《php面向对象程序设计入门教程》、《php网络编程技巧总结》、《php数组(array)操作技巧大全》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总

希望本文所述对大家php程序设计有所帮助。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网