小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

jpgraph 實(shí)例文檔

 Fujie_2014 2014-11-18
下載
在官方網(wǎng)站 http://www./jpgraph/ 下載jpgraph,其中1.X系列是用于PHP4的,2.X系列是用于PHP5的。

安裝
將下載的得到的jpgraph壓縮文件解壓至相應(yīng)的路徑。
 
配置
首先需要注意的是:要想適用jpgraph,你的PHP必須開啟了GD2擴(kuò)展。
jpgraph.php中有以下這樣一段代碼是設(shè)置字體文件路徑的
if (!defined('TTF_DIR')) {
    if (strstr( PHP_OS, 'WIN') ) {
        $sroot = getenv('SystemRoot');
        if( empty($sroot) ) {
            $t = new ErrMsgText();
            $msg = $t->Get(12,$file,$lineno);
            die($msg);
        }
        else {
          define('TTF_DIR', $sroot.'/fonts/');
        }
    } else {
        define('TTF_DIR','/usr/share/fonts/truetype/'); (我的作法是將windows下的fonts文件夾下的字體全部COPY/usr/local/fonts/truetype)
    }
}

要支持中文需要用到simhei.ttfsimsun.ttc這兩個(gè)字體,在使用中文的時(shí)候需要使用SetFont(FF_SIMSUN,FS_BOLD)設(shè)置字體。
 
如果你的文件編碼為utf-8,修改方法如下:
代碼:
方法一,在程序中修改
$title="
流量圖";
$title = iconv("UTF-8", "gb2312", $title);
$graph->title->Set($title);
方法二,修改源文件jpgraph_ttf.inc.php
在第99-106行,改成下面這樣子
    elseif( $aFF === FF_SIMSUN ) {
        // Do Chinese conversion
        /*
        if( $this->g2312 == null ) {
        include_once 'jpgraph_gb2312.php' ;
        $this->g2312 = new GB2312toUTF8();
        }
        return $this->g2312->gb2utf8($aTxt);
        */
        return $aTxt;
    }

jpgraph
默認(rèn)顯示漢字時(shí)是把漢字編碼認(rèn)為gb2312,轉(zhuǎn)化為utf-8以后再顯示。
這樣的話,如果你的文件編碼是gb2312,SetFont方法的第一個(gè)參數(shù)為FF_SIMSUN即可。
如果你是utf-8編碼你還需要先把漢字編碼轉(zhuǎn)化為gb2312,這樣你的漢字才可以正常顯示。

使用
可以參照jpgraph-2.3.4\src\Examples中的例子。下面是一些常用的:
$graph->title->Set(‘
設(shè)置圖表的標(biāo)題’);
$graph->xaxis->title->Set("
設(shè)置X軸的標(biāo)題");
$graph->yaxis->title->Set("
設(shè)置Y軸的標(biāo)題");

//
設(shè)置字體 如果是中文,第一個(gè)參數(shù)一般設(shè)置為FF_SIMSUN
SetFont(FF_SIMSUN,FS_BOLD,14);
//
如設(shè)置圖表標(biāo)題的字體
$graph->title->SetFont(FF_SIMSUN,FS_BOLD,14);

//
設(shè)置顏色
SetColor('red');
 
Example:

1. php Jpgraph繪制簡(jiǎn)單的X-Y坐標(biāo)圖

<?php
include ("../jpgraph.php");
include ("../jpgraph_line.php");
 
//將要用于圖表創(chuàng)建的數(shù)據(jù)存放在數(shù)組中
$data = array(19,23,34,38,45,67,71,78,85,90,96,145);
 
$graph = new Graph(500,300);                                                    //創(chuàng)建新的Graph對(duì)象
$graph->SetScale("textlin");                                                    //設(shè)置刻度樣式
$graph->img->SetMargin(30,30,80,30);                    //設(shè)置圖表邊界
$graph->title->Set("CDN Traffic Total");        //設(shè)置圖表標(biāo)題
$graph->title->SetColor("blue");
$graph->title->SetMargin(20);
 
// Create the linear plot
$lineplot=new LinePlot($data);              // 創(chuàng)建新的LinePlot對(duì)象
$lineplot->SetLegend("Line(Mbits)");   //設(shè)置圖例文字
$lineplot->SetColor("red");                 // 設(shè)置曲線的顏色
 
// Add the plot to the graph
$graph->Add($lineplot);                     //在統(tǒng)計(jì)圖上繪制曲線
 
// Display the graph
$graph->Stroke();                         //輸出圖像
?>
 

2. php Jpgraph繪制復(fù)雜的X-Y坐標(biāo)圖

<?php
include ("../jpgraph.php");
include ("../jpgraph_line.php");
 
$data1 = array(523,634,371,278,685,587,490,256,398,545,367,577);                //第一條曲線的數(shù)組
$data2 = array(19,23,34,38,45,67,71,78,85,87,90,96);                                    //第二條曲線的數(shù)組
 
$graph = new Graph(500,300,auto);                                                                               //創(chuàng)建新的Graph對(duì)象
$graph->SetScale("textlin");
$graph->SetShadow();                                                                                    //設(shè)置圖像的陰影樣式
 
$graph->img->SetMargin(60,30,30,70);                                                            //設(shè)置圖像邊距
$graph->title->Set("CDN流量圖");                                                //設(shè)置圖像標(biāo)題
$graph->title->SetMargin(10);
 
$lineplot1=new LinePlot($data1);                                                                        //創(chuàng)建設(shè)置兩條曲線對(duì)象
$lineplot2=new LinePlot($data2);
 
$lineplot1->value->Show();
$lineplot1->value->SetColor("black");
 
$graph->Add($lineplot1);                                                                                        //將曲線放置到圖像上
$graph->Add($lineplot2);
 
$graph->xaxis->title->Set("月份");                                                                      //設(shè)置坐標(biāo)軸名稱
$graph->yaxis->title->Set(" (Gbits)");
$graph->xaxis->title->SetMargin(10);
$graph->yaxis->title->SetMargin(10);
 
$graph->title->SetFont(FF_SIMSUN,FS_BOLD);                                                      //設(shè)置字體
$graph->yaxis->title->SetFont(FF_SIMSUN,FS_BOLD);
$graph->xaxis->title->SetFont(FF_SIMSUN,FS_BOLD);
 
$graph->xaxis->SetTickLabels($gDateLocale->GetShortMonth());
 
$lineplot1->SetColor("red");                                                                            //設(shè)置顏色
$lineplot2->SetColor("blue");
 
$lineplot1->SetLegend("Max");                                                           //設(shè)置圖例名稱
$lineplot2->SetLegend("Min");
 
$graph->legend->SetLayout(LEGEND_HOR);                                                  //設(shè)置圖例樣式和位置
$graph->legend->Pos(0.5,0.96,"center","bottom");
 
$graph->Stroke();                                                                                               //輸出圖像
?>

 

3. php Jpgraph繪制柱形圖

<?php
include ("../jpgraph.php");
include ("../jpgraph_bar.php");
 
$data = array(19,23,34,38,45,67,71,78,85,87,96,145);         //定義數(shù)組
$ydata = array("","","","","","","","","","","十一","十二");
$graph = new Graph(500,300);                                //創(chuàng)建新的Graph對(duì)象
$graph->SetScale("textlin");
 
$graph->SetShadow();                                       //設(shè)置陰影
$graph->img->SetMargin(40,30,40,50);                        //設(shè)置邊距
$barplot = new BarPlot($data);                                                          //創(chuàng)建BarPlot對(duì)象
$barplot->SetFillColor('blue');                                                         //設(shè)置顏色
$barplot->value->Show();                                                                                        //設(shè)置顯示數(shù)字
$graph->Add($barplot);                                                                                       //將柱形圖添加到圖像中
 
$graph->title->Set("CDN流量圖");                                                                        //設(shè)置標(biāo)題和X-Y軸標(biāo)題
$graph->title->SetColor("red");
$graph->title->SetMargin(10);
$graph->xaxis->title->Set("月份");
$graph->xaxis->title->SetMargin(5);
$graph->xaxis->SetTickLabels($ydata);
$graph->yaxis->title->Set(" (Mbits)");
 
$graph->title->SetFont(FF_SIMSUN,FS_BOLD);                                                      //設(shè)置字體
$graph->yaxis->title->SetFont(FF_SIMSUN,FS_BOLD);
$graph->xaxis->title->SetFont(FF_SIMSUN,FS_BOLD);
$graph->xaxis->SetFont(FF_SIMSUN,FS_BOLD);
$graph->Stroke();
?>

4. php Jpgraph繪制餅圖

<?php
include ("../jpgraph.php");
include ("../jpgraph_pie.php");
 
$data = array(19,23,34,38,45,67,71,78,85,87,90,96);
$lable_data = range(1,12);
 
$graph = new PieGraph(400,300);
$graph->SetShadow();
 
$graph->title->Set("CDN流量比例");
$graph->title->SetFont(FF_SIMSUN,FS_BOLD);
 
$pieplot = new PiePlot($data);
$pieplot->SetLegends($lable_data);
$pieplot->SetCenter(0.4);
$graph->Add($pieplot);
$graph->Stroke();
?>
 

5. php Jpgraph繪制3D餅圖

<?php
include ("../jpgraph.php");
include ("../jpgraph_pie.php");
include ("../jpgraph_pie3d.php");
 
$data = array(19,23,34,38,45,67,71,78,85,87,90,96);
 
$graph = new PieGraph(550,400);
$graph->SetShadow();
 
$graph->title->Set("CDN流量比例");
$graph->title->SetFont(FF_SIMSUN,FS_BOLD);
 
$pieplot = new PiePlot3D($data);                                                                        //創(chuàng)建PiePlot3D對(duì)象
$pieplot->SetCenter(0.4);                                                                                                       //設(shè)
置餅圖中心的位置
$pieplot->SetLegends($gDateLocale->GetShortMonth());            //設(shè)置圖例
 
$graph->Add($pieplot);
$graph->Stroke();
?>
 

6.

index.html
 
<html>
<head>
<title>CDN流量查詢系統(tǒng)統(tǒng)計(jì)</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<mce:style type="text/css"><!--
.style1 {
       font-size: 16px;
       font-weight: bold;
}
--></mce:style><style type="text/css" mce_bogus="1">.style1 {
       font-size: 16px;
       font-weight: bold;
}</style>
</head>
 
<body>
<form name="form1" method="get" action="result.php">
  <p align="center" class="style1"> CDN流量查詢系統(tǒng)統(tǒng)計(jì)</p>
  <table width="300" border="1" align="center" cellpadding="3" cellspacing="3">
    <tr>
      <td width="85"><strong>查詢年份</strong></td>
<td width="188"><select name="acct_yr" id="acct_yr">
  <option value="2009" selected>2008</option>
        <option value="2009" selected>2009</option>
      </select></td>
    </tr>
    <tr>
      <td><strong>起始月份</strong></td>
      <td><select name="start_mth" id="start_mth">
        <option selected>01</option>
        <option>02</option>
        <option>03</option>
        <option>04</option>
        <option>05</option>
        <option>06</option>
<option>07</option>
        <option>08</option>
        <option>09</option>
        <option>10</option>
        <option>11</option>
        <option>12</option>
 
      </select></td>
    </tr>
    <tr>
      <td><strong>終止月份</strong></td>
      <td><select name="end_mth" id="end_mth">
        <option >01</option>
        <option>02</option>
        <option>03</option>
        <option>04</option>
        <option>05</option>
        <option>06</option>
<option>07</option>
        <option>08</option>
        <option>09</option>
        <option>10</option>
        <option>11</option>
        <option selected >12</option>
        </select></td>
    </tr>
    <tr>
      <td><strong>統(tǒng)計(jì)圖類別</strong></td>
      <td><select name="graph" id="graph">
        <option value="1" selected>線型圖</option>
        <option value="2">柱形圖</option>
        <option value="3">餅圖</option>
        <option value="4">3D餅圖</option>
      </select></td>
    </tr>
  </table>
  <p align="center">
    <input type="submit" value="Submit">
    <input type="reset" name="Submit2" value="Reset">
  </p>
</form>
</body>
</html>
 
 
result.php
 
<?php
include ("../jpgraph.php");
include ("../jpgraph_line.php");
include ("../jpgraph_bar.php");
include ("../jpgraph_pie.php");
include ("../jpgraph_pie3d.php");
 
$conn = mysql_connect("localhost", "root", "woxiangnileyali");         //連接數(shù)據(jù)庫
 
$acct_yr = $_GET['acct_yr'];                            //獲取年份
$start_mth = $_GET['start_mth'];                      //獲取超始月份
$end_mth = $_GET['end_mth'];                         //獲取結(jié)束月份
$choose = $_GET['graph'];                        //獲取圖形類型
 
mysql_select_db("test", $conn);                                //執(zhí)行SQL, 獲得銷量值
$query_rs_prod = "SELECT acct_mth, amount FROM traffic WHERE acct_yr = '$acct_yr' and acct_mth between '$start_mth' and '$end_mth'";
$rs_prod = mysql_query($query_rs_prod, $conn) or die(mysql_error());
$row_rs_prod = mysql_fetch_assoc($rs_prod);
$totalRows_rs_prod = mysql_num_rows($rs_prod);
 
$data = array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);                   //初始化數(shù)組
do                                                                                                                                                                            //循環(huán)設(shè)置各月份數(shù)值
{
       $i = (int)$row_rs_prod['acct_mth']-1;
       $data[$i] = $row_rs_prod['amount'];
} while($row_rs_prod = mysql_fetch_assoc($rs_prod));
 
 
switch($choose)
{
       case 1:
              $graph = new Graph(400,300);                                               //創(chuàng)建新的Graph對(duì)象
              $graph->SetScale("textlin");                                             //設(shè)置刻度樣式
              $graph->img->SetMargin(30,30,80,30);                     //設(shè)置圖表邊界
              $graph->title->SetFont(FF_SIMSUN,FS_BOLD);                                                 //設(shè)置字體
              $graph->title->Set("CDN流量查詢");  //設(shè)置圖表標(biāo)題
              $lineplot=new LinePlot($data);
              $lineplot->SetLegend("Line");
              $lineplot->SetColor("red");
              $graph->Add($lineplot);
              break;
       case 2:
              $graph = new Graph(400,300);    
              $graph->SetScale("textlin");         
              $graph->SetShadow();         
              $graph->img->SetMargin(40,30,20,40);
              $barplot = new BarPlot($data);                                                      //創(chuàng)建BarPlot對(duì)象
              $barplot->SetFillColor('blue');                                                        //設(shè)置顏色
              $barplot->value->Show();                                                                           //設(shè)置顯示數(shù)字
              $graph->Add($barplot);                                                                              //將柱形圖添加到圖像中           
              $graph->title->Set("CDN流量查詢");                                                                 //設(shè)置標(biāo)題和X-Y軸標(biāo)題
              $graph->xaxis->title->Set("月份");
              $graph->yaxis->title->Set(" (Gbits)");
              $graph->title->SetFont(FF_SIMSUN,FS_BOLD);                                                 //設(shè)置字體
              $graph->yaxis->title->SetFont(FF_SIMSUN,FS_BOLD);
              $graph->xaxis->title->SetFont(FF_SIMSUN,FS_BOLD);
              break;
       case 3:
              $graph = new PieGraph(400,300);
              $graph->SetShadow();
             
              $graph->title->Set("CDN流量查詢");
              $graph->title->SetFont(FF_SIMSUN,FS_BOLD);
              $pieplot = new PiePlot($data);
              $pieplot->SetLegends($gDateLocale->GetShortMonth());          //設(shè)置圖例
              $graph->Add($pieplot);
              break;
       case 4:
              $graph = new PieGraph(400,300);
              $graph->SetShadow();
             
              $graph->title->Set("CDN流量查詢");
              $graph->title->SetFont(FF_SIMSUN,FS_BOLD);
              $pieplot = new PiePlot3D($data);                                                          //創(chuàng)建PiePlot3D對(duì)象
              $pieplot->SetCenter(0.4);                                                                                          //設(shè)置餅圖中心的位置
              $pieplot->SetLegends($gDateLocale->GetShortMonth());          //設(shè)置圖例
              $graph->Add($pieplot);
              break;
       default:
              echo "graph參數(shù)錯(cuò)誤";
              exit;
}
$graph->Stroke();
?>
 

本文出自 “壞男孩” 博客,請(qǐng)務(wù)必保留此出處http://5ydycm.blog.51cto.com/115934/177498

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多