调用微信接口获取二维码并自定义二维码大小

返回微信小程序码图片流的工具类
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;

import javax.imageio.ImageIO;

import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClientBuilder;
import org.apache.http.protocol.HTTP;

import com.alibaba.fastjson.JSON;
public class QRcodeUtil {
/**
 * 生成指定尺寸小程序码
 *
 * @param sceneStr    (参数)
 * @param accessToken (凭证)
 * @param page        (扫码跳转页面)
 * @param width       (小程序码大小)
 * @return 返回一个图片流
 */
public static BufferedImage generatedQrImg(String sceneStr, String accessToken, String page, Integer width) {

    Map<String, Object> params = new HashMap<>(3);
    //参数
    params.put("scene", sceneStr);
    //要跳转的页面
    params.put("page", page);
    //二维码宽度 如果小于默认参数 使用微信最小参数280
    params.put("width", width < 280 ? 280 : width);

    CloseableHttpClient httpClient = HttpClientBuilder.create().build();

    HttpPost httpPost = new HttpPost("https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=" + accessToken);
    httpPost.addHeader(HTTP.CONTENT_TYPE, "application/json");
    String body = JSON.toJSONString(params);
    try {
        StringEntity entity = new StringEntity(body);
        entity.setContentType("image/png");
        httpPost.setEntity(entity);
        HttpResponse response = httpClient.execute(httpPost);
        InputStream inputStream = response.getEntity().getContent();
        //字节流转图片对象
        Image image = ImageIO.read(inputStream);
        //构建新图片
        BufferedImage tag = new BufferedImage(width, width, BufferedImage.TYPE_INT_RGB);
        tag.getGraphics().drawImage(image , 0, 0, 165, 165, null);
        return tag;
    } catch (Exception e) {
        System.out.println(e.getMessage());
    }
    return null;
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值