- 论坛徽章:
- 0
|
问题已经解决,方法比较笨,没办法了,主要还是因为不会php。
关于这个中文的问题要注意两个方面:
1、安装php时注意gd库和freetype的支持,编译时多看看configure参数和结果,安装weathermap后确保运行php check.php时所有测试都通过,这方面可以看weathermap的manual。我的编译参数如下:
'./configure' '--with-apxs2=/usr/local/apache/bin/apxs' '--with-mysql=/usr/local/mysql/' '--with-gd=/usr/local/gd/' '--with-zlib-dir=/usr/local/rrdbuild/lb/' '--with-png-dir=/usr/local/rrdbuild/lb/' '--with-jpeg-dir=/usr/local/libjpeg/' '--with-freetype-dir=/usr/local/rrdbuild/lb/' '--enable-sockets' '--with-gettext' '--enable-gd-native-ttf' '--enable-mbstring' '--with-ttf'
2、打开weathermap目录下的Weathermap.class.php文件,可以找到如下的函数:
function myimagestring($image, $fontnumber, $x, $y, $string, $colour, $angle=0)
{
// if it's supposed to be a special font, and it hasn't been defined, then fall through
if ($fontnumber > 5 && !isset($this->fonts[$fontnumber]))
{
warn ("Using a non-existent special font ($fontnumber) - falling back to internal GD fonts [WMWARN03]\n");
if($angle != 0) warn("Angled text doesn't work with non-FreeType fonts [WMWARN02]\n");
$fontnumber=5;
}
if (($fontnumber > 0) && ($fontnumber < 6))
{
imagestring($image, $fontnumber, $x, $y - imagefontheight($fontnumber), $string, $colour);
if($angle != 0) warn("Angled text doesn't work with non-FreeType fonts [WMWARN02]\n");
}
else
{
// look up what font is defined for this slot number
if ($this->fonts[$fontnumber]->type == 'truetype')
{
$shishi=iconv("GB2312","UTF-8",$string);
imagettftext($image, $this->fonts[$fontnumber]->size, $angle, $x, $y,
$colour, $this->fonts[$fontnumber]->file, $shishi);
}
if ($this->fonts[$fontnumber]->type == 'gd')
{
imagestring($image, $this->fonts[$fontnumber]->gdnumber,
$x, $y - imagefontheight($this->fonts[$fontnumber]->gdnumber),
$string, $colour);
if($angle != 0) warn("Angled text doesn't work with non-FreeType fonts [WMWARN04]\n");
}
}
}
上面这个函数通过php内置函数imagettftext进行truetpye文字的绘制,所以解决问题的关键是如何让imagettftext函数绘
制中文字体,我的解决办法就是添加$shishi=iconv("GB2312","UTF-8",$string),然后再将此字符串输出。
楼上的兄弟有兴趣的话咱们可以交流一下,我qq77674031。 |
|