Express实现生成二维码接口

2020-11-26 16:33:48 浏览数 (1)

代码语言:javascript复制
// 引入模块
const express=require('express');
const QRCode=require('qr-image');

// 生成服务器
var server=express();

// 查询接口
server.get('/code',(req,res)=>{
    // 模拟的请求接口地址
    var str='http://localhost:8090/code?url=https://www.baidu.com/&size=210&margin=10&type=1'

    var url=req.query.url;

    // 二维码尺寸,输入时为了保证精确性,请确保为21的公倍数,否则按四舍五入处理.
    // 如果为空,默认为5,即尺寸为105*105
    var size = Math.round(req.query.size/21) || 5;

    // 白色外边距,输入时为了保证精确性,请确保为5的公倍数,否则按四舍五入处理.
    // 如果为空,默认为2,即尺寸为10
    var margin = Math.round(req.query.margin/10) || 2 ;

    var type=req.query.type;

    // 如果有type参数,返回base64
    if(type){
        var codeStr = QRCode.imageSync( url ,{ type: 'png',size:size, margin:margin});
        var base64='data:image/jpeg;base64,'  codeStr.toString('base64');
        res.writeHead(200, {'Content-Type':'text/plain;charset=UTF-8'}); 
        res.end(base64);
    // 如果没有type参数,返回图片
    }else{
        var code = QRCode.image( url ,{ type: 'png',size:size, margin:margin});
        res.writeHead(200, {'Content-Type': 'image/png;charset=UTF-8'});
        code.pipe(res);
    }
});

server.listen(8090);

0 人点赞