- 论坛徽章:
- 0
|
直接用汉字“枫叶红了”代替{$user},生成的图片显示就正常,
换用$user="枫叶红了",图片上的$user就显示乱码,想问问大家有什么解决的方法
例图:
正常 http://club.silu.info/club/album/2005/12/10/20051210_0621331a21bc6203823719df76a3c359.jpg
乱码 http://club.silu.info/club/album/2005/12/10/20051210_f69d57149cf29a82cce00d1fdb2693e9.jpg
- function imagecopyresampledselection($filename,$type="jpg",$user)
- {
- // Get new dimensions
- list($width, $height) = getimagesize($filename);
- // Resize
- $image_p = imagecreatetruecolor($width, $height+15);
- switch ($type) {
- case "jpg": $image = imagecreatefromjpeg($filename);break;
- case "gif": $image = imagecreatefromgif($filename);break;
- case "png": $image = imagecreatefrompng($filename);break;
- }
- imagecopy($image_p, $image, 0, 0, 0, 0, $width, $height);
- $white = imagecolorallocate($image_p, 255, 255, 255);
- //$user=mb_convert_encoding($user,"GB2312");
- $str = "由{$user}上传于club.xwschool.net";
- $str1= "毕业生网";
- $font="SIMSUN.TTC";
- if (320/65*strlen($str)<$width) {
- imagettftext($image_p,10,0,($width-320/65*strlen($str))/2,$height+13,$white,$font,$str);
- } elseif (320/65*strlen($str1)<$width) {
- imagettftext($image_p,10,0,($width-320/65*strlen($str1))/2,$height+13,$white,$font,$str1);
- }
- return $image_p;
- }
- ?>
复制代码
[ 本帖最后由 HonestQiao 于 2005-12-11 15:53 编辑 ] |
|