利用weixin-java-miniapp生成小程序码并直接返回图片文件流的方法
程序员文章站
2023-11-12 17:50:40
有时候我们可能需要在其他的网页上展示我们自己的小程序中某些页面的小程序码,这种时候,我们需要用到小程序的生成小程序码的相关接口。
工具选型
我们仍然选用简单方便...
有时候我们可能需要在其他的网页上展示我们自己的小程序中某些页面的小程序码,这种时候,我们需要用到小程序的生成小程序码的相关接口。
工具选型
我们仍然选用简单方便的来完成此功能。
项目配置
详见我们的另一篇文章
生成小程序码的相关类型
小程序码的其他生成方式以及相关类型在这篇文章中介绍的较为详细,此处不再赘述,以下仅以生成不限制张数的这种类型来做一个示例。
生成小程序码图片
先获取小程序的service实例wxmaservice。
再获取二维码相关操作的service实例
// 获取小程序服务实例 wxmaservice wxmaservice = wxmaconfiguration.getwxmaservice(); // 获取小程序二维码生成实例 wxmaqrcodeservice wxmaqrcodeservice = wxmaservice.getqrcodeservice(); // 设置小程序二维码线条颜色为黑色 wxmacodelinecolor linecolor = new wxmacodelinecolor("0", "0", "0"); // 生成二维码图片字节流(此处也可以生成file类型,如果想将图片文件保存到服务器就生成file类型,此处生成byte[]类型,方便直接返回文件流到前端) byte[] qrcodebytes = null; qrcodebytes = wxmaqrcodeservice.createwxacodeunlimitbytes(string.valueof(id), null, 430, false, linecolor, false);
返回文件流
将文件流写到response中,相关示例代码如下:
@restcontroller @requestmapping("/qrcode") public class qrcodecontroller { private static final logger logger = loggerfactory.getlogger(qrcodecontroller.class); @getmapping("/getminiappqrcode/{id}") public void getminiappqrcode(@pathvariable("id") long id, httpservletrequest request, httpservletresponse response) throws exception{ // 获取小程序服务实例 wxmaservice wxmaservice = wxmaconfiguration.getwxmaservice(); // 获取小程序二维码生成实例 wxmaqrcodeservice wxmaqrcodeservice = wxmaservice.getqrcodeservice(); // 设置小程序二维码线条颜色为黑色 wxmacodelinecolor linecolor = new wxmacodelinecolor("0", "0", "0"); // 生成二维码图片字节流 byte[] qrcodebytes = null; try{ qrcodebytes = wxmaqrcodeservice.createwxacodeunlimitbytes(string.valueof(id), null, 430, false, linecolor, false); } catch(exception e){ logger.error("生成小程序码出错", e); } // 设置contenttype response.setcontenttype("image/png"); // 写入response的输出流中 outputstream stream = response.getoutputstream(); stream.write(qrcodebytes); stream.flush(); stream.close(); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。