快速业务通道

jpgraph 汉字乱码解决方案及实例

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-23

  JPGRAPH是PHP世界里一款非常方便的做各种图表的工作,柱状图、饼图、雷达图等,基本上对所有的图表无所不能。

  在PEAR中,也有一款做图表的工具,叫image_graph,这个工具功能也是非常强大,但jpgraph和image_graph比起来的最大好处,就是有很多的例子和非常详细的文档说明,这就使jpgraph用起来是相当的方便。

  最后决定选用jpgraph。

  下面是一段代码。同时在用的过程中遇到了汉字乱码的问题,原因已经找到,也和大家说明一下。

  如果您在使用jpgraph的过程遇到了什么问题,可以MAIL给我,大家一直探讨。同时,如果你有什么使用心得,也希望您能够发到LAMPER上,让更多的人分享你的经验。

 

  1. <?php   
  2. include ("../jpgraph.php");   
  3. include ("../jpgraph_line.php");   
  4.    
  5. $ydata = array(11,3,8,12,5,1,9,13,5,7);   
  6. $y2data = array(354,200,265,99,111,91,198,225,293,251);   
  7. $datax = array("2006-01-01","2006-01-01","2006-01-01","2006-01-01","2006-01-01","2006-01-01","2006-01-01","2006-01-01","2006-01-01","2006-01-01");   
  8.    
  9. // Create the graph. These two calls are always required   
  10. $graph = new Graph(800,400,"auto");    
  11. $graph->img->SetMargin(40,40,20,40);   
  12.    
  13. $graph->title->SetFont(FF_SIMSUN,FS_BOLD);   
  14. $title = "展示pv/展示ip";   
  15. $graph->title->Set($title);   
  16.    
  17. $graph->SetScale("textlin");   
  18. $graph->SetY2Scale("lin");   
  19.    
  20. $graph->xaxis->title->Set("时间");   
  21. $graph->xaxis->title->SetFont(FF_SIMSUN,FS_BOLD);   
  22. $graph->xaxis->SetTickLabels($datax);   
  23.    
  24. $graph->yaxis->title->Set("展示pv");   
  25. $graph->yaxis->SetColor("blue");   
  26. $graph->yaxis->title->SetFont(FF_SIMSUN,FS_BOLD);   
  27.    
  28. $graph->y2axis->title->Set("展示IP");   
  29. $graph->y2axis->SetColor("orange");   
  30. $graph->y2axis->title->SetFont(FF_SIMSUN,FS_BOLD);   
  31.    
  32. $lineplot=new LinePlot($ydata);   
  33. $lineplot->SetColor("blue");   
  34. $lineplot->SetWeight(2);   
  35. $lineplot->SetLegend("展示pv");   
  36. $graph->legend->SetFont(FF_SIMSUN,FS_BOLD);   
  37.    
  38. $lineplot2=new LinePlot($y2data);   
  39. $lineplot2->SetColor("orange");   
  40. $lineplot2->SetWeight(2);   
  41. $lineplot2->SetLegend("展示ip");   
  42.    
  43.    
  44. $graph->Add($lineplot);   
  45. $graph->AddY2($lineplot2);   
  46.    
  47. // Display the graph   
  48. $graph->Stroke();   
  49. ?>  

  注意SetFont方法,如果你的文件编码是gb2312,SetFont方法的第一个参数为FF_SIMSUN即可正常显示汉字

  如果你的文件编码为utf-8,还需加一句$title = iconv("UTF-8

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号