首页站内杂志技术文摘
文章内容页

帝国CMS标题生成图片的函数

  • 作者:雨祺
  • 来源: 原创
  • 发表于2022-02-06 21:57:23
  • 被阅读0
  • 注意字体需要放在/e/class/目录下面
    测试的时候,需要把已生成的图片删掉,不然会导致测试不成功;
    1、在/e/class/userfun.php增加函数
    1. <?php 
    2. //---------------------------用户自定义标签函数文件 
    3. //关键词生成图片 栏目ID,信息ID,背景图片宽度,背景图片高度,背景图片 
    4. function Reimg($classid,$id,$width='450',$height='300',$bg='http://img1.qq.com/sports/pics/9015/9015217.jpg',$path='temp/img/hd-'){ 
    5.         global $dbtbpre,$empire,$class_r,$public_r; 
    6.         $tbname = $class_r[$classid]['tbname']; 
    7.         $r=$empire->fetch1("select * from {$dbtbpre}ecms_$tbname where id='$id' limit 1"); 
    8.         $mycr=GetPathname($class_r[$r[classid]][classpath]);//栏目目录 
    9.         $classpath=$mycr[0];//获取栏目目录 
    10.         $path = $path.$classpath.$r[id].'.png';//保存的图片名称 
    11.         $file = ECMS_PATH.$path;//图片的绝对地址 
    12.         if(!file_exists($file)){//判断图片是否存在 
    13.             $font = "msyh.ttf";//字体 
    14.             $myImage=imagecreatefrompng($bg);//背景图片 
    15.         $blue=imagecolorallocate($myImage, 0, 0, 255);//设置字体颜色 
    16.         $fontBox = imagettfbbox(55, 0, $font ,$r['title']);//获取文字所需的尺寸大小 
    17.         $width = ceil(($width - $fontBox[2]) / 2) + 20;//计算文字所需宽度  居中   后面加的数字表示偏移多少 
    18.         $height = ceil(($height - $fontBox[1] - $fontBox[7]) / 2) - 35;//计算文字所需高度 居中 后面加的数字表示偏移多少 
    19.         imagettftext($myImage, 48, 0, $width, $height, $blue, $font, $r['title']); //生成图片 
    20.         imagepng($myImage,$file); //保存图片 
    21.         imagedestroy($myImage);//释放内存 
    22.         } 
    23.         return $public_r['newsurl'].$path;//返回数据 
    24. ?> 
    2、根目录建立temp/img
    3、内容模板
    1. <img src="<?=Reimg($navinfor['classid'],$navinfor['id'])?>" width="158" /> 

     
    【审核人:站长】

        标题:帝国CMS标题生成图片的函数

        本文链接:https://www.meiweny.cn/zazhi/zhongwangjiaocheng/77.html

        赞一下

        深度阅读

        • 您也可以注册成为美文苑的作者,发表您的原创作品、分享您的心情!

        阅读记录

          关注美文苑