search
Homephp教程php手册JpGraph php柱状图使用介绍
JpGraph php柱状图使用介绍Jun 13, 2016 pm 12:06 PM
jpgraphphpintroduceDrawingusepicturecomplexabstractmasteruseIntroduction

JpGraph简介  

以前用PHP作图时必须要掌握复杂抽象的画图函数,或者借助一些网上下载的花柱形图、饼形图的类来实现。没有一个统一的chart类来实现图表的快速开发。

  现在我们有了一个新的选择:JpGraph。专门提供图表的类库。它使得作图变成了一件非常简单的事情,你只需从数据库中取出相关数据,定义标题,图表类型,然后的事情就交给JpGraph,只需掌握为数不多的JpGraph内置函数(可以参照JpGraph附带例子学习),就可以画出非常炫目的图表!

JpGraph安装方法:
1、
  先到各大网站上下载最新的版本。如: http://www.jb51.net/codes/38194.html
2、
  确保你的PHP版本最低为4.04(最好是4.1.1),并且支持GD库。必须确保GD库可以正常运行,可以通过运行phpinfo()来查看GD库的信息是否存在的方法来判断。同时要有要求GD库的版本应为2.0,而不是1.0。
3、
  将下载的JpGraph压缩包解压到任意文件夹。
4、
  设置jpgraph.php(jpgraph的主配置文件)。设置jpgraph的cache(缓存)文件夹,和TTF(字体)文件夹。
  分别在35行和38行

复制代码 代码如下:


  35 // DEFINE("CACHE_DIR","/tmp/jpgraph_cache/");
  38 // DEFINE("TTF_DIR","/usr/X11R6/lib/X11/fonts/truetype/");


  Linux系统改为:

复制代码 代码如下:


  DEFINE("CACHE_DIR","/tmp/jpgraph_cache/");'
  DEFINE("TTF_DIR","/usr/X11R6/lib/X11/fonts/truetype/");


  Windows系统改为:

复制代码 代码如下:


  DEFINE("CACHE_DIR","c:/apache/htdocs/ jpgraph_cache/");'
  DEFINE("TTF_DIR","c:/windows/fonts");


  注意事项:
  (1)cache(缓存)文件夹路径可以自己定义,而TTF(字体)文件夹必须是%system%/Fonts。
  (2)确保PHP对cache(缓存)文件夹有写的权限。
5、
  完成上述设置后就可以使用JpGraph了,可以先将JpGraph的例子copy到htdocs文件夹中,运行一下看看。呵呵,200多个例子,包含各类图表,够学一阵子的。
  在实际使用中,笔者还遇到了一些问题,比如字体错误等等,还在研究中……
从数据库中读取数据到jpgraph图表中
1、
  将./src/Examples目录中的文件example16.2.php以及./src目录中的文件jpgraph_bar.php、jpgraph_gradient.php、jpgraph_line.php、jpgraph_plotmark.inc、jpgraph.php拷贝到同一目录下。
2、
  建立数据库jpg,数据库表test
  建立2个字段:
  id(主键):int
  number:int
  并添加一些数据
3、
  修改example16.2.php
  修改后的代码

复制代码 代码如下:


    include ("jpgraph.php");
  include ("jpgraph_line.php");
  include ("jpgraph_bar.php");
  $connect=mysql_connect("localhost","root","");
  mysql_select_db("jpg",$connect);
  $query=mysql_query("select * from test",$connect);
  $i=0;
  while ($array=mysql_fetch_array($query)) {
  $l2datay[$i]=$array["number"];
  $i++;
  }
  mysql_close($connect);
  // Create the graph.
  $graph = new Graph(400,200,"auto");
  $graph->SetScale("textlin");
  $graph->img->SetMargin(40,130,20,40);
  $graph->SetShadow();
  // Create the bar plot
  $bplot = new BarPlot($l2datay);
  $bplot->SetFillColor("orange");
  $bplot->SetLegend("Result");
  // Add the plots to t'he graph
  $graph->Add($bplot);
  $graph->title->Set("Adding a line plot to a bar graph v1");
  $graph->xaxis->title->Set("X-title");
  $graph->yaxis->title->Set("Y-title");
  $graph->title->SetFont(FF_FONT1,FS_BOLD);
  $graph->yaxis->title->SetFont(FF_FONT1,FS_BOLD);
  $graph->xaxis->title->SetFont(FF_FONT1,FS_BOLD);
  //$graph->xaxis->SetTickLabels($datax);
  //$graph->xaxis->SetTextTickInterval(2);
  // Display the graph
  $graph->Stroke();
  ?>


4、
  刷新页面即可看到结果
历史信息
  网络优化,300*200的图片大小大概为2K,但普通图片要比JpGraph生成的大4-5K
  支持GD1和GD2,并且JpGraph会自动探测系统安装了哪个库
  支持多种图表样式,包括常见的网状图、花柱形图、饼形图(2D和3D的都可以)等等
  支持3D透明,α混合技术
  支持超过400种的已命名颜色
  支持多种方式带背景图片的绘图
  支持生成的图表网络缓存以减轻HTTP服务器负担
  2009年9月17日:更新JpGraph 1.27.1。
  2009年4月18日:更新JpGraph 1.27和JpGraph 2.34。
  12月2日:今日有两位phpchina的朋友加入我们的翻译团队:刺猬和Deman。
  2008年6月28日:JpGraph中文站发布,虽然这是用ASP制作的网站,但并不代表站长偏爱ASP
  2008年6月15日:JpGraph 1.26发布。修复了饼形图分割片问题。也许这将是1.x发布版宣布停止更新后的最后一版2
  008年6月14日:JpGraph 2.33发布
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),