网上有现成的插件,但是很贵。于是网上找了一个PHP函数,改成了帝国CMS的,主要功能就是根据标题生成图片功能。
1、在/e/class/userfun.php增加如下函数:
//关键词生成图片 栏目ID,信息ID,背景图片宽度,背景图片高度,背景图片 function Reimg($classid,$id,$width='450',$height='300',$bg='',$path='temp/img/hd-'){ global $dbtbpre,$empire,$class_r,$public_r; $bg = ECMS_PATH.'upload/bg/xxx.png';//背景图片存放的路径 指定一张图片 //或者你需要更多的背景图片 $bgnum = rand(1,9);//随机数字图片名字 $bg = ECMS_PATH.'upload/bg/'.$bgnum.'.png';//背景图片存放的路径 随机多张图片 $tbname = $class_r[$classid]['tbname']; $r=$empire->fetch1("select * from {$dbtbpre}ecms_{$tbname} where id='$id' limit 1"); $mycr=GetPathname($class_r[$r['classid']]['classpath']);//栏目目录 $classpath=$mycr[0];//获取栏目目录 $path = $path.$classpath.$r['id'].'.png';//保存的图片名称 $file = ECMS_PATH.$path;//图片的绝对地址 if(!file_exists($file)){//判断图片是否存在 测试的时候把!去掉 正式使用时加上就可以了 $font = ECMS_PATH."/upload/font/字体.otf";//你需要的字体路径 $myImage=imagecreatefrompng($bg);//背景图片 $blue=imagecolorallocate($myImage, 0, 0, 255);//设置字体颜色 $fontBox = imagettfbbox(55, 0, $font ,$r['title']);//获取文字所需的尺寸大小 $width = ceil(($width - $fontBox[2]) / 2) + 20;//计算文字所需宽度 居中 后面加的数字表示偏移多少 $height = ceil(($height - $fontBox[1] - $fontBox[7]) / 2) - 35;//计算文字所需高度 居中 后面加的数字表示偏移多少 imagettftext($myImage, 48, 0, $width, $height, $blue, $font, $r['title']); //生成图片 imagepng($myImage,$file); //保存图片 imagedestroy($myImage);//释放内存 } return $public_r['newsurl'].$path;//返回图片路径 }
内容页调用代码
<img src="<?=Reimg($navinfor['classid'],$navinfor['id'])?>" />
1、标题字数过多不能分行显示
这里我使用的是PHP中的mb_substr() 函数分割中文文字
mb_substr($r['title']
2、判断标题长度生成图片
这里就直接if判断标题长度、然后imagettftext生成图片
3、标题生成图片居中问题
这个根据个人背景图片与字体大小自行微调,也不多赘余