php實現簡易合成圖片方法

來源:互聯網
上載者:User

本文主要和大家分享php實現簡易合成圖片方法,主要以代碼的形式和大家分享,希望能協助到大家。

1.封裝函數

//產生二維碼function qr_user_code($url_code,$uid){    header("Access-Control-Allow-Origin:*");    vendor('phpqrcode.phpqrcode');//引用phpqrcode類包    $url = $url_code;    $errorCorrectionLevel = 'H';//容錯層級    $matrixPointSize = 5;//圖片大小慢慢自己調整,只要是int就行    $path = 'user_cache/';    if (!file_exists($path)) {        mkdir($path);    }    $QR =$QRB = $path.rand(10000,99999).time().".png";    \QRcode::png($url, $QR, $errorCorrectionLevel, $matrixPointSize, 2);    $dst_path = '20180326171846.png';//web\lALPBbCc1VATaEvNA4DNAnw_636_896.png    $src_path = $QR;//覆蓋圖    //建立圖片的執行個體    $dst = imagecreatefromstring(file_get_contents($dst_path));    $src = imagecreatefromstring(file_get_contents($src_path));//擷取覆蓋圖圖片的寬高    list($src_w, $src_h) = getimagesize($src_path);//將覆蓋圖複製到靶心圖表片上,最後個參數100是設定透明度(100是不透明),這裡實現不透明效果    imagecopymerge($dst, $src, 184, 410, 0, 0, 286, 286, 100);//     @unlink($QIMG); //刪除二維碼與logo的合成圖片    @unlink($QRB);  //刪除伺服器上二維碼圖片    header("Content-type: image/png");    imagepng($dst,'uploads/user/'.$uid.'.png');//    imagejpeg($dst,'../uploads/user/'.$uid.'.jpg');    imagedestroy($dst);    imagedestroy($src);}

2.調用步驟一的函數

 public function qr_code($uid){        $url = 'http://ypyz.yxyzyl.com/template/mobile/xian/static/takehtml/personalhtml/bind.html?uid='.$uid;        qr_user_code($url,$uid);//因為我封裝在common裡面的,所以這樣調用        $time = time();        $path = '/uploads/user/'.$uid.'.png';        $sha1 = sha1($uid.$time.'.png');        $res = (new Us())->where(['user_id'=>$uid])->update(['qr_code'=>$sha1]);        $re = db('picture')->insert([            'path'=>$path,            'sha1'=>$sha1,            'status'=>1,            'create_time'=>$time        ]);        if ($res !== false&&$re!=false) {            $this->assign('path',$path);            return $this->fetch();        } else {            $this->error('產生二維碼失敗', '');        }    }

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.