27 lines
472 B
PHP
27 lines
472 B
PHP
<?php
|
|
|
|
namespace app\common\server;
|
|
|
|
use think\Image;
|
|
|
|
class Qcode
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
* 带背景的二维码
|
|
* @param $codePath 二维码路径
|
|
*/
|
|
public function setBgCode($share_code = '', $bg_image = '', $x = 0, $y = 0)
|
|
{
|
|
require_once('../vendor/topthink/think-image/src/Image.php');
|
|
#水印开始
|
|
$image = Image::open($bg_image);
|
|
$image->water($share_code, [$x, $y])->save($share_code);
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
} |