校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁 > 知識(shí)庫(kù) > php實(shí)現(xiàn)的中秋博餅游戲之繪制骰子圖案功能示例

php實(shí)現(xiàn)的中秋博餅游戲之繪制骰子圖案功能示例

熱門標(biāo)簽:網(wǎng)絡(luò)電話400申請(qǐng) 全國(guó)各省地圖標(biāo)注點(diǎn) 外呼系統(tǒng)人工客服 周口網(wǎng)絡(luò)回?fù)芡夂粝到y(tǒng) 隨州銷售電銷機(jī)器人公司 福建高頻外呼防封系統(tǒng)哪家好 百度地圖標(biāo)注類型是酒店 400電話申請(qǐng)辦理 商丘外呼系統(tǒng)好處

本文實(shí)例講述了php實(shí)現(xiàn)的中秋博餅游戲之繪制骰子圖案功能。分享給大家供大家參考,具體如下:

最近公司中秋博餅(在廈門),自己沒事也想玩玩,所以就想動(dòng)手寫了一個(gè)純php實(shí)現(xiàn)的中秋博餅游戲,既然要純php實(shí)現(xiàn),就要用php來生成圖案,所以第一步就先繪制骰子圖案。

平時(shí)很少使用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點(diǎn)各點(diǎn)圖案,1/3/5顏色是藍(lán)色,2/4/6是紅色,效果圖如下:

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP圖形與圖片操作技巧匯總》、《PHP基本語法入門教程》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫(kù)操作入門教程》及《php常見數(shù)據(jù)庫(kù)操作技巧匯總》

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • php實(shí)現(xiàn)的網(wǎng)頁版剪刀石頭布游戲示例
  • php實(shí)現(xiàn)貪吃蛇小游戲
  • php猜單詞游戲
  • php實(shí)現(xiàn)的簡(jiǎn)易掃雷游戲?qū)嵗?/li>
  • PHP實(shí)現(xiàn)扎金花游戲之大小比賽的方法
  • jQuery+PHP實(shí)現(xiàn)的擲色子抽獎(jiǎng)游戲?qū)嵗?/li>
  • PHP使用header()輸出圖片緩存實(shí)例
  • php將圖片文件轉(zhuǎn)換成二進(jìn)制輸出的方法
  • php讀取圖片內(nèi)容并輸出到瀏覽器的實(shí)現(xiàn)代碼
  • PHP提取數(shù)據(jù)庫(kù)內(nèi)容中的圖片地址并循環(huán)輸出
  • php實(shí)現(xiàn)的中秋博餅游戲之?dāng)S骰子并輸出結(jié)果功能詳解

標(biāo)簽:六安 十堰 海南 定西 樂山 迪慶 佛山 南寧

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《php實(shí)現(xiàn)的中秋博餅游戲之繪制骰子圖案功能示例》,本文關(guān)鍵詞  php,實(shí)現(xiàn),的,中秋,博餅,游戲,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《php實(shí)現(xiàn)的中秋博餅游戲之繪制骰子圖案功能示例》相關(guān)的同類信息!
  • 本頁收集關(guān)于php實(shí)現(xiàn)的中秋博餅游戲之繪制骰子圖案功能示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 甘孜县| 怀来县| 乌审旗| 万全县| 西吉县| 息烽县| 高要市| 天祝| 县级市| 漯河市| 佛山市| 三原县| 闽清县| 伊川县| 卓尼县| 白山市| 双流县| 庆云县| 闸北区| 县级市| 保靖县| 大渡口区| 竹溪县| 荔浦县| 富源县| 克什克腾旗| 广饶县| 咸丰县| 金湖县| 武强县| 灵川县| 蕉岭县| 哈尔滨市| 西乌珠穆沁旗| 车险| 灯塔市| 城口县| 浦城县| 麻城市| 康乐县| 延长县|