求助:mantis1.0.6用jpgraph1.20.5来显示图形中文显示乱码问题!
mantis1.0.6中,用jpgraph1.20.5来显示图形,中文显示乱码,在网上查了N多资料了,仍无法正常显示中文,大家快来帮帮我呀![ 本帖最后由 txy 于 2007-1-4 15:11 编辑 ] 我也遇到这个问题了,仍未解决! 几个问题:
1、图形报表显示不出或是出现乱码问题。
解决方式:
a.如果是1.0.0之前的版本,则需要修改代码,主要是修改一下几处地方:
config文件
$g_default_language = 'chinese_simplified';#将程序界面语言设为简体中文,chinese_traditional则为繁体中文。
$g_use_jpgraph = ON; # 使用图形报表
$g_jpgraph_path = './JPGraph/src/'; # JPGraph路径
graph_api.php文件,在core目录里面。
由于前期版本对中文的支持很弱,需要自行加上代码,非常感谢前人的摸索。
在graph_api.php中每个“$graph->title->Set(…”后面根据当前的图表是柱图、线图还是饼图)
分别加上下面代码:
//Set the title and axis font if the default_language is set to chinese
if (config_get('default_language') == 'chinese_simplified')
{
$graph->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->xaxis->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->yaxis->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->xaxis->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->yaxis->SetFont(FF_SIMSUN,FS_NORMAL);
}
else if (config_get('default_language') == 'chinese_traditional')
{
$graph->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->yaxis->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->xaxis->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->xaxis->SetFont(FF_CHINESE,FS_NORMAL);
$graph->yaxis->SetFont(FF_CHINESE,FS_NORMAL);
};
对于饼图
//Set the title and legend font if the default_language is set to chinese if (config_get('default_language') == 'chinese_simplified')
{
$graph->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->legend->SetFont(FF_SIMSUN,FS_NORMAL);
}
else if (config_get('default_language') == 'chinese_traditional')
{
$graph->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->legend->SetFont(FF_CHINESE,FS_NORMAL);
};
b.1.0.0之后的版本,已经支持中文,在安装的时候可以在界面中选择自己习惯的语言,则在图形界面也不会出现乱码。
2.系统界面乱码问题。
主要体现数据库编码字符集类型和程序中使用不一问题,如果在mysql数据库中采用的是GB字符集,则用英文语言显示原有数据库的中文记录时也会出现乱码的现象。这种问题主要体现在mantis升级的时候。 上面这个方法我试过了,我的Mantis是1.0.6的,按上面说的意思,我的版本已经支持中文了?界面可以正常显示中文,只有图表仍显示乱码!问题仍未解决 自己来顶 刚才试了一下,语句:
//Set the title and axis font if the default_language is set to chinese
if (config_get('default_language') == 'chinese_simplified')
{
$graph->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->xaxis->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->yaxis->title->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->xaxis->SetFont(FF_SIMSUN,FS_NORMAL);
$graph->yaxis->SetFont(FF_SIMSUN,FS_NORMAL);
}
else if (config_get('default_language') == 'chinese_traditional')
{
$graph->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->yaxis->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->xaxis->title->SetFont(FF_CHINESE,FS_NORMAL);
$graph->xaxis->SetFont(FF_CHINESE,FS_NORMAL);
$graph->yaxis->SetFont(FF_CHINESE,FS_NORMAL);
};
肯本就没有被执行,不知为何?大虾们快帮俺看看 请参看:http://blog.miforum.org/287/viewspace_63.html 同样的问题,已经照网上说的方法修改过,但是仍然是乱码(只不过变成另外一种乱码了)
14)jpgraph的图例中文显示
打开c:\mantis-1.0.0a3\core\graph_api.php
查找:graph_get_font()
在其中添加一行'chinese_gbk' => FF_SIMSUN,
在c:\mantis-1.0.0a3\config_inc.php文件中添加
$g_graph_font = 'chinese_gbk';
打开e:\mantis-1.0.0a3\jpgraph-2.0beta\src\jpg-config.inc
查找// DEFINE("TTF_DIR","/usr/X11R6/lib/X11/fonts/truetype/");
改为DEFINE("TTF_DIR","c:/winnt/fonts/"); (如果是win98则为c:/windows/fonts/)
查找 DEFINE('CHINESE_TTF_FONT','bkai00mp.ttf');
改为 DEFINE('CHINESE_TTF_FONT','simsun.ttc');
页:
[1]