程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php動態生成餅圖代碼

php動態生成餅圖代碼

編輯:關於PHP編程

*/
//創建圖像
$image=imagecreatetruecolor(300,300);
//定義畫餅狀圖所需要的顏色
$white=imagecolorallocate($image, 0xff, 0xff, 0xff);
$gray=imagecolorallocate($image, 0xc0, 0xc0, 0xc0);
$darkgray=imagecolorallocate($image, 0x90, 0x90, 0x90);
$navy=imagecolorallocate($image, 0x00, 0x00, 0x80);
$darknavy=imagecolorallocate($image, 0x00, 0x00, 0x50);
$red=imagecolorallocate($image, 0xff, 0x00, 0x00);
$darkred=imagecolorallocate($image, 0x90, 0x00, 0x00);

/*
imagecolorallocate -- 為一幅圖像分配顏色   說明   int imagecolorallocate ( resource image, int red, int green, int blue)   imagecolorallocate() 返回一個標識符,代表了由給定的 rgb 成分組成的顏色。image 參數是 imagecreate() 函數的返回值。red,green 和 blue 分別是所需要的顏色的紅,綠,藍成分。這些參數是 0 到 255 的整數或者十六進制的 0x00 到 0xff。imagecolorallocate() 必須被調用以創建每一種用在 image 所代表的圖像中的顏色。
*/
//畫圖
for($i=160;$i > 150; $i--)
{
  imagefilledarc($image, 150, $i, 200, 80, 0, 45, $darknavy, img_arc_pie);
  imagefilledarc($image, 150, $i, 200, 80, 45, 75 , $darkgray, img_arc_pie);
  imagefilledarc($image, 150, $i, 200, 80, 75, 360 , $darkred, img_arc_pie);
}
imagefilledarc($image, 150, 150, 200, 80, 0, 45, $navy, img_arc_pie);
imagefilledarc($image, 150, 150, 200, 80, 45, 75 , $gray, img_arc_pie);
imagefilledarc($image, 150, 150, 200, 80, 75, 360 , $red, img_arc_pie);
header('content-type: image/png');
imagepng($image);
imagedestroy($image);
/*
imagefilledarc()函數,可以在畫出橢圓弧的同時,使用指定顏色對其進行填充。使用此函數的這種功能,就可以很簡單的畫出一個用於統計的餅狀圖。下面演示imagefilledarc()函數的使用方法

該代碼的執行結果如圖22.8所示:
*/

//在圖片畫線條

//創建真彩色圖像
$img=imagecreatetruecolor(300,300);
$white=imagecolorallocate($img,255,255,255);
$red=imagecolorallocate($img,255,0,0);
$green=imagecolorallocate($img,0,255,0);
//在圖像上畫橢圓
imagefilledellips教程e($img,150,150,250,100,$red);
imagefilledellipse($img,150,150,100,250,$green);
//輸出圖像
header("content-type: image/png");
imagepng($img);
//銷毀圖像
imagedestroy($img);
/*
該代碼的執行結果如圖22.9所示:
*/

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved