VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php实现的中秋博饼游戏之绘制骰子图案功能示例

这篇文章主要介绍了php实现的中秋博饼游戏之绘制骰子图案功能,涉及php图形绘制中位置、颜色、形状等相关属性设置操作技巧,需要的朋友可以参考下,本文实例讲述了php实现的中秋博饼游戏之绘制骰子图案功能,分享给大家供大家参考,具体如下:

最近公司中秋博饼(在厦门),自己没事也想玩玩,所以就想动手写了一个纯php实现的中秋博饼游戏,既然要纯php实现,就要用php来生成图案,所以第一步就先绘制骰子图案。

平时很少使用php绘图,不过查查资料还是绘制出来了,不多说了,代码如下:

  1. header('Content-Type:image/png'); 
  2. $img  = imagecreatetruecolor(200, 200); 
  3. $white = imagecolorallocate($img, 255, 255, 255); 
  4. $grey = imagecolorallocate($img, 100, 100, 100); 
  5. $blue = imagecolorallocate($img, 0, 102, 255); 
  6. $red  = imagecolorallocate($img, 255, 0, 0); 
  7. imagefill($img, 0, 0, $white); 
  8. imageline($img, 10, 20, 10, 180, $grey); 
  9. imageline($img, 10, 180, 20, 190, $grey); 
  10. imageline($img, 20, 190, 180, 190, $grey); 
  11. imageline($img, 180, 190, 190, 180, $grey); 
  12. imageline($img, 190, 180, 190, 20, $grey); 
  13. imageline($img, 190, 20, 180, 10, $grey); 
  14. imageline($img, 180, 10, 20, 10, $grey); 
  15. imageline($img, 20, 10, 10, 20, $grey); 
  16. //1 
  17. imagefilledarc($img, 100, 100, 50, 50, 0, 0, $blue, IMG_ARC_PIE); 
  18. //2 
  19. //imagefilledarc($img, 60, 100, 40, 40, 0, 0 , $red, IMG_ARC_PIE); 
  20. //imagefilledarc($img, 140, 100, 40, 40, 0, 0 , $red, IMG_ARC_PIE); 
  21. //3 
  22. //imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); 
  23. //imagefilledarc($img, 100, 100, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); 
  24. //imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); 
  25. //4 
  26. //imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE); 
  27. //imagefilledarc($img, 50, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE); 
  28. //imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE); 
  29. //imagefilledarc($img, 150, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE); 
  30. //5 
  31. //imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); 
  32. //imagefilledarc($img, 50, 150, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); 
  33. //imagefilledarc($img, 100, 100, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); 
  34. //imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); 
  35. //imagefilledarc($img, 150, 50, 40, 40, 0, 0 , $blue, IMG_ARC_PIE); 
  36. //6 
  37. //imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE); 
  38. //imagefilledarc($img, 50, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE); 
  39. //imagefilledarc($img, 100, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE); 
  40. //imagefilledarc($img, 100, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE); 
  41. //imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE); 
  42. //imagefilledarc($img, 150, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE); 
  43. imagepng($img); 
  44. imagedestroy($img);
  45.  


原文链接:http://www.phpfensi.com/php/20210818/17666.html
 


相关教程