程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php畫一個背景透明,且開始處旋轉到在圓的正下方處的一個圓餅統計圖

php畫一個背景透明,且開始處旋轉到在圓的正下方處的一個圓餅統計圖

編輯:關於PHP編程

php畫一個背景透明,且開始處旋轉到在圓的正下方處的一個圓餅統計圖


/*
 * _survey 得到一個投票的圓餅圖
* @access public 表示函數對外公開
* @param $_agree 同意票數
* @param $_disagree 反對票數
* return 一張統計圓餅圖
* */
function _vote($_agree,$_disagree){
    //處理參數
    if($_agree==0&&$_disagree==0){
        $_vote = 270;
    }
    if($_agree==0&&$_disagree!=0){
        $_vote = 91;
    }
    if($_agree!=0&&$_disagree==0){
        $_vote = 89;
    }
    if($_agree!=0&&$_disagree!=0){
        $_vote = intval(360*($_agree/($_agree+$_disagree))+90);
    }
    //創建畫布
    $_img=imagecreatetruecolor(150,100);
    //填充透明背景
    imagealphablending($_img, false);
    imagesavealpha($_img, true);
    $white = imagecolorallocatealpha($_img,255,255,255,127);
    imagefill($_img,0,0,$white);
    //創建顏色
    $_green=imagecolorallocate($_img,180,210,52);
    $_blue=imagecolorallocate($_img,83,201,237);
    $_gary=imagecolorallocate($_img,192,192,192);
    $_green1=imagecolorallocate($_img,149,178,36);
    $_blue1=imagecolorallocate($_img,41,160,193);
    $_gary1=imagecolorallocate($_img,144,144,144);
    
    for($i=60;$i>=50;$i--){
        imagefilledarc($_img,100,$i,100,50,90,$_vote,$_blue1,IMG_ARC_PIE);
        imagefilledarc($_img,100,$i,100,50,$_vote,90,$_green1,IMG_ARC_PIE); 
    }
    
    imagefilledarc($_img,100,$i,100,50,90,$_vote,$_blue,IMG_ARC_PIE);
    imagefilledarc($_img,100,$i,100,50,$_vote,90,$_green,IMG_ARC_PIE);
    
    header("content-type: image/png");
    imagepng($_img);
    imagedestroy($_img);
}


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