php实现的中秋博饼游戏之绘制骰子图案功能示例
发布:smiling 来源: PHP粉丝网 添加日期:2021-08-18 11:37:21 浏览: 评论:0
这篇文章主要介绍了php实现的中秋博饼游戏之绘制骰子图案功能,涉及php图形绘制中位置、颜色、形状等相关属性设置操作技巧,需要的朋友可以参考下,本文实例讲述了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);
Tags: php中秋博饼 php骰子图案
相关文章
- ·php实现的中秋博饼游戏之掷骰子并输出结果功能详解(2021-08-18)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)