如何生成背景透明的微信小程序二维码

如何生成背景透明的微信小程序二维码

透明背景参数

is_hyaline 是否需要透明底色, is_hyaline 为true时,生成透明底色的小程序码

    public function getQRCodeB($scene,$page,$width=null,$auto_color=null,     $line_color=null){
    
    
        $url = ApiUrl::GET_APP_CODE_B;
        $param = array(
            'scene'=>$scene,
            'page'=>$page,
            'width'=>$width,
            'auto_color'=>$auto_color,
            'line_color'=>$line_color,
            'is_hyaline'=>true,
        );  
        return $this->sendRequestWithToken($url,$param);
    }

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/guo_qiangqiang/article/details/123501001