码迷,mamicode.com
首页 > Web开发 > 详细

PHP生成图片

时间:2019-09-23 15:11:17      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:ntc   背景图   locate   格式   tco   class   from   接受   oca   

public function get_image(){
        header("content-type:image/jpeg");
    
        $name = "西贝小小凤 ";
        $age = "24";
        $date =date("Y年n月j日",time());
    
        $im = imagecreatetruecolor(640, 1080);           // 设置画布大小   原图(640, 1080)
        $bg = imagecreatefromjpeg(‘hong-gc.jpg‘);   // 设置背景图片
        imagecopy($im,$bg,0,0,0,0,640, 1080);             // 将背景图片拷贝到画布相应位置
        imagedestroy($bg);                              // 销毁背景图片
        $font = __DIR__ . /ARIALUNI.TTF;               // 设置字体          
        $fontcolor = imagecolorallocate($im, 254,251,203);  // 颜色 
    
        /* 写入内容 */
        imagettftext($im, 16, 0, 108,310, $fontcolor, $font,$name );       // 写入名称
        imagettftext($im, 16, 0, 108,310, $fontcolor, $font,$name );       // 设置粗体
        imagettftext($im, 16, 0, 470, 950, $fontcolor, $font, $age);    //写入年龄
        imagettftext($im, 16, 0, 470, 950, $fontcolor, $font, $date);   //写入时间
    
    
        imagejpeg($im);     // 生成jpeg格式图片
        imagedestroy($im);  // 销毁图片
    }

 

显示图片直接访问改函数即可

也可以动态生成图片,在访问连接里面加上对应的参数,接受后生成图片

 

PHP生成图片

标签:ntc   背景图   locate   格式   tco   class   from   接受   oca   

原文地址:https://www.cnblogs.com/xbxxf/p/11572105.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!