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