由于我们无法将小程序直接分享到朋友圈,但分享到朋友圈的需求又很多,业界目前的做法是利用小程序的 Canvas 功能生成一张带有小程序码的图片,然后引导用户下载图片到本地后再分享到朋友圈。相信大家在绘制分享图中应该踩到 Canvas 的各种(坑)彩dan了吧~
这里首先推荐一个开源的组件:painter(通过该组件目前我们已经成功在支付宝小程序上也应用上了分享图功能)
咱们不多说,直接上手就是干。
首先我们新增一个自定义组件,在该组件的json中引入painter
{
"component": true,
"usingComponents": {
"painter": "/painter/painter"
}
}
然后组件的WXML (代码片段在最后)
// 将该组件定位在屏幕之外,用户查看不到。
<painter style="position: absolute; top: -9999rpx;" palette="{{imgDraw}}" bind:imgOK="onImgOK" />
重点来了 JS (代码片段在最后)
Component({
properties: {
// 是否开始绘图
isCanDraw: {
type: Boolean,
value: false,
observer(newVal) {
newVal && this.handleStartDrawImg()
}
},
// 用户头像昵称信息
userInfo: {
type: Object,
value: {
avatarUrl: '',
nickName: ''
}
}
},
data: {
imgDraw: {}, // 绘制图片的大对象
sharePath: '' // 生成的分享图
},
methods: {
handleStartDrawImg() {
wx.showLoading({
title: '生成中'
})
this.setData({
imgDraw: {
width: '750rpx',
height: '1334rpx',
background: 'https://qiniu-image.qtshe.com/20190506share-bg.png',
views: [
{
type: 'image',
url: 'https://qiniu-image.qtshe.com/1560248372315_467.jpg',
css: {
top: '32rpx',
left: '30rpx',
right: '32rpx',
width: '688rpx',
height: '420rpx',
borderRadius: '16rpx'
},
},
{
type: 'image',
url: this.data.userInfo.avatarUrl || 'https://qiniu-image.qtshe.com/default-avatar20170707.png',
css: {
top: '404rpx',
left: '328rpx',
width: '96rpx',
height: '96rpx',
borderWidth: '6rpx',
borderColor: '#FFF',
borderRadius: '96rpx'
}
},
{
type: 'text',
text: this.data.userInfo.nickName || '青团子',
css: {
top: '532rpx',
fontSize: '28rpx',
left: '375rpx',
align: 'center',
color: '#3c3c3c'
}
},
{
type: 'text',
text: `邀请您参与助力活动`,
css: {
top: '576rpx',
left: '375rpx',
align: 'center',
fontSize: '28rpx',
color: '#3c3c3c'
}
},
{
type: 'text',
text: `宇宙最萌蓝牙耳机测评员`,
css: {
top: '644rpx',
left: '375rpx',
maxLines: 1,
align: 'center',
fontWeight: 'bold',
fontSize: '44rpx',
color: '#3c3c3c'
}
},
{
type: 'image',
url: 'https://qiniu-image.qtshe.com/20190605index.jpg',
css: {
top: '834rpx',
left: '470rpx',
width: '200rpx',
height: '200rpx'
}
}
]
}
})
},
onImgErr(e) {
wx.hideLoading()
wx.showToast({
title: '生成分享图失败,请刷新页面重试'
})
//通知外部绘制完成,重置isCanDraw为false
this.triggerEvent('initData')
},
onImgOK(e) {
wx.hideLoading()
// 展示分享图
wx.showShareImageMenu({
path: e.detail.path,
fail: err => {
console.log(err)
}
})
//通知外部绘制完成,重置isCanDraw为false
this.triggerEvent('initData')
}
}
})
那么我们该如何引用呢?
首先json里引用我们封装好的组件share-box
{
"usingComponents": {
"share-box": "/components/shareBox/index"
}
}
以下示例为获取用户头像昵称后再生成图。
<button class="intro" bindtap="getUserInfo">点我生成分享图</button>
<share-box isCanDraw="{{isCanDraw}}" userInfo="{{userInfo}}" bind:initData="handleClose" />
调用的地方:
const app = getApp()
Page({
data: {
isCanDraw: false
},
// 组件内部关掉或者绘制完成需重置状态
handleClose() {
this.setData({
isCanDraw: !this.data.isCanDraw
})
},
getUserInfo(e) {
wx.getUserProfile({
desc: "获取您的头像昵称信息",
success: res => {
const { userInfo = {} } = res
this.setData({
userInfo,
isCanDraw: true // 开始绘制海报图
})
},
fail: err => {
console.log(err)
}
})
}
})
最后绘制分享图的自定义组件就完成啦~效果图如下:
tips:
- 文字居中实现可以看下代码片段
- 文字换行实现(maxLines)只需要设置宽度,maxLines如果设置为1,那么超出一行将会展示为省略号
代码片段:https://developers.weixin.qq.com/s/J38pKsmK7Qw5
请问一下palette文件里的模板怎么获取值。。。
上面这些代码都是放到 comcomponent里面的么?需要加载几个外部文件了 看dome加载了俩个文件夹?
先收藏后面上项目中体验下。
网络图片 保存下来之后很模糊 求解
大神,有个问题想问,我 getImageInfo 之后绘制图片,然后在执行 setFontSize 和 fillText() 然后执行 draw(),但是文字一直不出现是什么原因?没有用您的插件,我以为是工具的问题,但是放到手机上也展示不出来
ctx.drawImage(res.path, 0, 0, rect[0].width, rect[0].height) // 背景图
const percent = rect[0].width / 560 // 比例
ctx.beginPath()
if (self.data.shareInfo.ercode) {
ctx.arc(percent * (346 + 138 * 0.5), percent * (771 + 138 * 0.5), percent * 148 * 0.5, 0, Math.PI * 2, false) // 二维码
}
if(self.data.shareInfo.avatar) {
ctx.arc(percent * (71 + 40 * 0.5), percent * (768 + 40 * 0.5), percent * 40 * 0.5, 0, Math.PI * 2, false) // 头像
}
ctx.closePath()
ctx.clip()
if (self.data.shareInfo.ercode) {
ctx.drawImage(self.data.shareInfo.ercode, percent * 346, percent * 771, percent * 138, percent * 138)
}
if (self.data.shareInfo.avatar) {
ctx.drawImage(self.data.shareInfo.avatar, percent * 71, percent * 768, percent * 40, percent * 40)
}
// ctx.restore()
ctx.save()
ctx.setFontSize(20)
ctx.setFillStyle('#FA8035')
ctx.fillText(self.data.shareInfo.nickName, percent * 119, percent * 772) // 昵称
ctx.setFontSize(40)
ctx.setFillStyle('#ffffff')
ctx.fillText(self.data.shareInfo.inviteCode, percent * 225, percent * 283) // 邀请码
ctx.save()
ctx.draw()
你好,支持旋转和缩放么
你好,苹果手机上没有显示背景图片,这是什么原因呢?
多谢,刚好用到!
大佬可以帮我看下代码嘛 真机测试没反应,开发工具可以正常展示的
https://developers.weixin.qq.com/s/hZWdfimQ7acv
我想设置背景透明。好像不支持透明,然后我就想矩形不填充颜色,然后就有一个默认黑色的了