php GD库函数生成海报

 

php使用GD库操作图片生成分享海报

代码:

<?php
/**
 * 图片处理
 * @author Administrator
 *
 */
class ImgGD{
    /**
     * 创建分享图片
     */
    public function createShareImg(){
        // 1 获取背景图尺寸
        list($bg_w,$bg_h) = getimagesize("../img/bg.jpg");
        // 2 创建画图
        $img = @imagecreatetruecolor($bg_w,$bg_h);
        // 3 填充画布背景颜色
        $img_bg_color = imagecolorallocate($img,255,255,255);
        imagefill($img,0,0,$img_bg_color);
        // 4 将背景图填充到画布
        $bg_img = $this->getImgReource("../img/bg.jpg");
        imagecopyresized($img,$bg_img,0,0,0,0,$bg_w,$bg_h,$bg_w,$bg_h);
        // 5 填空用户二维码
        $qrcode = $this->getImgReource("../img/qrcode.png");
        // 计算用户二维码所在x轴位置
        list($qr_w,$qr_h) = getimagesize("../img/qrcode.png");
        $qrcode_des_x = ceil(($bg_w - $qr_w)/2);
        imagecopyresized($img,$qrcode,$qrcode
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值