php圖形jpgraph操作實(shí)例分析
本文實(shí)例講述了php圖形jpgraph操作。分享給大家供大家參考,具體如下:
<?php include ("src/jpgraph.php"); include("src/jpgraph_bar.php"); include ("src/jpgraph_line.php"); //設(shè)置顯示的數(shù)據(jù)數(shù)組; //調(diào)用類庫 //設(shè)置圖像的大小 $graph = new Graph(400,200,"auto"); $graph->SetScale("textlin"); //設(shè)置圖形的邊距 $graph->img->SetMargin(40,180,40,40); //設(shè)置圖形的背景圖片,填充方式有:BGIMG_FILLPLOT, BGIMG_FILLFRAME, BGIMG_COPY $graph->SetBackgroundImage("abc.jpg",BGIMG_FILLPLOT); $graph->img->SetAngle(45); //設(shè)置圖形在圖像中的角度 //設(shè)置背景圖片的對比度,must be between -1 <= x <= 1, (0,0)=original image $graph->AdjBackgroundImage(0,0); //設(shè)置投影; //$graph->SetShadow(); //設(shè)置標(biāo)題 $graph->title->Set("test image"); //設(shè)置標(biāo)題字體樣式 $graph->title->SetFont(FF_FONT1,FS_BOLD); //設(shè)置標(biāo)題的邊距 $graph->title->SetMargin(3); //設(shè)置圖列的位置 $graph->legend->Pos(0.05,0.5,"right","center"); //設(shè)置圖列的投影,顏色 $graph->legend->SetShadow('darkgray@0.1'); $graph->legend->SetFillColor('lightblue@0.3'); //設(shè)置x軸的標(biāo)記 $graph->xaxis->SetTickLabels($label_x); //設(shè)置X軸的顯示值的角度; $graph->xaxis->SetLabelAngle(30); //設(shè)置x軸標(biāo)題和字體顏色 $graph->xaxis->title->Set('Year 2006'); $graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD); $graph->xaxis->title->SetColor('white'); //設(shè)置x軸的字體和顏色 $graph->xaxis->SetFont(FF_FONT1,FS_BOLD); $graph->xaxis->SetColor('yellow'); //設(shè)置y軸的字體和顏色 $graph->yaxis->SetFont(FF_FONT1,FS_BOLD); $graph->yaxis->SetColor('yellow'); //設(shè)置是否顯示格子。默認(rèn)為顯示; //$graph->ygrid->Show(false); //設(shè)置格子的顏色和粗細(xì)。值越小,格子越粗。 $graph->ygrid->SetColor('yellow@0.5'); //設(shè)置y軸更優(yōu)美一些 $graph->yaxis->scale->SetGrace(20); //設(shè)置圖列的數(shù)據(jù) $bplot1 = new BarPlot($datay1); $bplot2 = new BarPlot($datay2); //設(shè)置圖列的填充顏色 $bplot1->SetFillColor('orange@0.4'); $bplot2->SetFillColor('brown@0.4'); //設(shè)置值的格式 $bplot1->value->SetFormat('%d'); //設(shè)置圖列標(biāo)簽 $bplot1->SetLegend('Label 1'); $bplot2->SetLegend('Label 2'); //設(shè)置圖列在圖中的陰影 $bplot1->SetShadow('black@0.4'); $bplot2->SetShadow('black@0.4'); //生成圖列 $gbarplot = new GroupBarPlot(array($bplot1,$bplot2)); $gbarplot->SetWidth(0.9); $graph->Add($gbarplot); //生成圖形 $graph->Stroke(); //上面所說的時在生成柱形圖,當(dāng)生成線性圖時用下面的方法 $p1 = new LinePlot($datay); $p1->mark->SetType(MARK_FILLEDCIRCLE); $p1->mark->SetFillColor("red"); $p1->mark->SetWidth(4); $p1->SetColor("blue"); $p1->SetCenter(); $p1->SetLegend("Triumph Tiger -98"); $graph->Add($p1); $p2 = new LinePlot($data2y); $p2->mark->SetType(MARK_STAR); $p2->mark->SetFillColor("red"); $p2->mark->SetWidth(4); $p2->SetColor("red"); $p2->SetCenter(); $p2->SetLegend("New tiger -99"); $graph->Add($p2); // Style can also be specified as SetStyle([1|2|3|4]) or // SetStyle("solid"|"dotted"|"dashed"|"lobgdashed") $lineplot->SetStyle("dashed");//設(shè)置線的樣式 $graph->yaxis->scale->SetGrace(20); //設(shè)置y軸更優(yōu)美一些 ?>
2.柱形圖和餅狀圖舉例
if($tag == 1) { $graph = new Graph(600,400,"auto"); $graph->SetScale("textlin"); $graph->setMarginColor('lightblue'); $graph->SetShadow(); $graph->setMargin(30,100,30,60); //設(shè)置標(biāo)題; $graph->title->set("文章分類匯總"); $graph->title->SetMargin(3); $graph->title->setfont(FF_SIMSUN,FS_BOLD); $graph->title->setcolor('black@0.5'); $graph->yaxis->title->SetFont(FF_SIMSUN,FS_BOLD); $graph->xaxis->title->SetFont(FF_SIMSUN,FS_BOLD); $graph->xaxis->SetFont(FF_SIMSUN,FS_NORMAL); $graph->xaxis->SetColor('darkblue','black'); $graph->xaxis->SetTickLabels($name); $graph->xaxis->SetLabelAngle(30); $bplot = new BarPlot($article_num); $bplot->SetFillColor("orange"); $bplot->value->SetFormat('%d'); $bplot->SetShadow('darkgray'); $bplot->value->show(); $graph->legend->SetFont(FF_SIMSUN,FS_BOLD); $bplot->SetLegend("文章數(shù)"); $graph->Add($bplot); $graph->Stroke(); } else { $graph1 = new PieGraph(600,400,"auto"); $graph1->SetScale("textlin"); $graph1->SetShadow(); $graph1->title->setFont(FF_SIMSUN,FS_BOLD); $graph1->title->set("用戶文章餅形圖"); $graph1->setMargin(30,100,30,60); $p1 = new pieplot3d($article_num); $p1->setAngle(80); $p1->setsize(0.5); $p1->setShadow(); $p1->ExplodeSlice(2); $p1->SetCenter(0.4); $graph1->legend->SetFont(FF_SIMSUN,FS_NORMAL); $graph1->legend->setshadow(); $p1->SetLegends($name); $graph1->Add($p1); $graph1->Stroke(); } //生成本地圖片 $graph->Stroke("路徑/文件名.png");
更多關(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ù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家PHP程序設(shè)計(jì)有所幫助。
相關(guān)文章
PHP實(shí)現(xiàn)獲取MySQL數(shù)據(jù)庫的記錄數(shù)據(jù)
如果后臺數(shù)據(jù)處理使用PHP來進(jìn)行,那么就要有相應(yīng)的數(shù)據(jù)處理及返回。最常用的就是獲取記錄總數(shù)和表記錄查詢結(jié)果。本文將為大家介紹如何利用PHP實(shí)現(xiàn)獲取MySQL數(shù)據(jù)庫的記錄數(shù)據(jù),需要的可以參考一下2022-02-02PHP通過get方法獲得form表單數(shù)據(jù)方法總結(jié)
這篇文章我們給大家介紹了PHP如何通過get的方式來得到獲取form表單數(shù)據(jù)的方法,有需要的朋友們參考下。2018-09-09收集的PHP中與數(shù)組相關(guān)的函數(shù)
收集的PHP中與數(shù)組相關(guān)的函數(shù)...2007-03-03PHP備份數(shù)據(jù)庫生成SQL文件并下載的函數(shù)代碼
這是一個將指定數(shù)據(jù)庫里的所有表備份為一個SQL文件,可下載。這個源碼來自dedecms程序,功能挺多,也很實(shí)用,但是代碼的質(zhì)量還有待提高2012-02-02生成靜態(tài)頁面的php函數(shù),php愛好者站推薦
生成靜態(tài)頁面的php函數(shù),php愛好者站推薦...2007-03-03php提示W(wǎng)arning:mysql_fetch_array() expects的解決方法
這篇文章主要介紹了php提示W(wǎng)arning:mysql_fetch_array() expects的解決方法,是一個比較典型的php程序錯誤排查案例,具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2014-12-12