甘特图中文乱码
dotproject 2.0
jpgraph v3.0.7(如果缺少文件jpgraph_gb2312.php ,可以从高版本copy,我这个版本不知道怎么缺少这个文件)
1. 下载文件 simsun.ttc 和 SimHei.ttf
2. 修改文件jpg-config.inc.php
define('TTF_DIR', DP_BASE_DIR.'/lib/fonts/vera/');
//copy simsun.ttc 和 SimHei.ttf to DP_BASE_DIR.'/lib/fonts/vera/'
define('FF_CUSTOM', 30);
3. 如果数据库是编码格式是utf8 ,则
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; //修改为
}
阅读(920) | 评论(0) | 转发(0) |