這篇文章帶大家跟風做一個虎年春節頭像製作小程序,獲取微信頭像,選擇頭像邊框,即可合成不同的虎年春節頭像,希望對大家有所幫助!
馬上就到春節了,今天看到有網友分享了網頁版的虎年頭像製作工具,感覺很不錯,正好打算做個小程式練手沒啥主題,那就用這個試試吧。
先上最終效果圖:
說下實作流程
第一步:先取得到目前微信的頭像圖片,主要代碼如下,注意預設取得到的頭像圖片不是高清的,需要先轉換成高清圖片,避免生成之後很模糊。
getUserProfile(e) { console.log(e) let that = this; wx.getUserProfile({ desc: '仅用于生成头像使用', success: (res) => { var url = res.userInfo.avatarUrl; while (!isNaN(parseInt(url.substring(url.length - 1, url.length)))) { url = url.substring(0, url.length - 1) } url = url.substring(0, url.length - 1) + "/0"; res.userInfo.avatarUrl = url; console.log(JSON.stringify(res.userInfo)); that.setData({ userInfo: res.userInfo, hasUserInfo: true }) that.drawImg(); } }); },
第二步:合成頭像,把素材圖片和第一步獲取到的頭像圖片,獲取到本地文件,然後利用小程式的cavas元件進行合成。
drawImg() { let that = this; wx.showLoading({ title: '生成头像中...', }) let promise1 = new Promise(function (resolve, reject) { wx.getImageInfo({ src: that.data.userInfo.avatarUrl, success: function (res) { resolve(res); } }) }); var mask_id = that.data.now_mask; let promise2 = new Promise(function (resolve, reject) { wx.getImageInfo({ src: `../../assets/img/mask0${mask_id}.png`, success: function (res) { console.log(res) resolve(res); } }) }); Promise.all([ promise1, promise2 ]).then(res => { console.log(res) var windowWidth = wx.getSystemInfoSync().windowWidth var context = wx.createCanvasContext('myAvatar'); var size = windowWidth /750 * 500 // var size = 500 context.drawImage(res[0].path, 0, 0, size, size); context.draw(true) context.save(); context.drawImage('../../'+res[1].path, 0, 0, size, size); context.draw(true) context.save(); }) wx.hideLoading() },
第三步:下載合成的圖片到本地相簿。
canvasToTempFile(){ if(!this.data.userInfo){ wx.showModal({ title: '温馨提示', content: '请先点击上方获取微信头像', showCancel: false, }) return } var windowWidth = wx.getSystemInfoSync().windowWidth var size = 500 // var dpr = 750 / windowWidth wx.canvasToTempFilePath({ x: 0, y: 0, height: size, width: size, canvasId: 'myAvatar', success: (res) => { wx.saveImageToPhotosAlbum({ filePath: res.tempFilePath, success: result => { wx.hideLoading(); wx.showModal({ content: '图片已保存到相册,请前往微信去设置哟!', showCancel: false, success: function(res) { if (res.confirm) { console.log('用户点击确定'); } } }) }, fail(e) { wx.hideLoading(); console.log("err:" + e); } }) } }); },
這樣就實現了主要的功能了。
最後放上小程式碼,歡迎大家掃碼體驗一下:
#最後目前專案已開源:https://github. com/hackun666/new-year-face
祝大家春節快樂,虎年大吉!
原文網址:https://juejin.cn/post/7057807283463389191
作者:hackun
#【相關學習推薦:小程式開發教學】
以上是帶你開發一個虎年春節頭像生成小程式的詳細內容。更多資訊請關注PHP中文網其他相關文章!