本文實例講述了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程序設計有所幫助。
【網站聲明】本站除付費源碼經過測試外,其他素材未做測試,不保證完整性,網站上部分源碼僅限學習交流,請勿用于商業用途。如損害你的權益請聯系客服QQ:2655101040 給予處理,謝謝支持。