【小程序最佳實踐】小程序生成海報保存分享圖片徹底指南(包括:頭像裁剪圓形,自定義文字)

小程序生成海報保存分享圖片徹底指南(包括:頭像,文字)

業務

在小程序中生成海報(包括用戶頭像和自定義文字)而且保存到本地

實現思路

利用canvas畫布,把用戶頭像和自定義文字定位好,用戶點擊按鈕保存到本地canvas

注意事項 難點

小程序canvas不支持自定義寬高,反正我沒找到,canvas畫布大部分業務都須要全屏,響應式,至少寬100%
解決方案:判斷到屏幕尺寸,傳到wxml 裏面
遠程圖片不能直接使用 getImageInfo 獲取,須要保存到本地
解決方案:canvas直接支持遠程圖片,不須要使用這個api

先來個ui (嘿嘿!此圖通過公司的設計受權過)

技術棧

  • canvas
  • wx.createCanvasContext
  • wx.canvasToTempFilePath
  • Promise

實戰

首先咱們在wxml裏面寫一個canvas佔位
注意這裏的寬度是100%,響應式,海報的高posterHeight 是從js裏面動態計算的
<canvas canvas-id="starkImg" style="width:100%;height:{{posterHeight}}px;"></canvas>

根據屏幕動態計算海報的尺寸

data: {
  motto: 'Hello World',
  hidden: true,
  userInfo: {},
  hasUserInfo: false,
  windowWidth: '',
  posterHeight: '',
},
onLoad: function () {
  const poster = {
    "with": 375,
    "height": 587
  }
  const systemInfo = wx.getSystemInfoSync()
  let windowWidth = systemInfo.windowWidth
  let windowHeight = systemInfo.windowHeight
  let posterHeight = parseInt((windowWidth / poster.with) * poster.height)
  this.setData({
    windowWidth: windowWidth,
    posterHeight: posterHeight
  })
}

背景圖片生成

const that = this
  // 圖片路徑
  const imagePath = '../../static/image/common/'
  let bgimgPromise = new Promise(function (resolve, reject) {
    console.log('data', that.data)
    wx.getImageInfo({
      src: imagePath + "base.png",
      success: function (res) {
        resolve(res);
      }
    })
  });

頭像直接使用遠程頭像

初始化的時候,調取,必定在生成海報以前
此處能夠存儲本地,或使用狀態均可以

wxml小程序

// 能夠從後端接口獲取 或 官方自己遠程地址

 
  <button class="share" type="primary" open-type="getUserInfo" bindgetuserinfo="getUserInfo">開始答題(獲取用戶信息)</button>

js後端

getUserInfo: function (e) {
    app.globalData.userInfo = e.detail.userInfo
    let userInfo = e.detail.userInfo
    console.log('userInfo', userInfo)
    // 更新用戶信息
    // api.post('更新用戶信息的url', userInfo)
    this.setData({
      userInfo: e.detail.userInfo,
      hasUserInfo: true
    })
  },

生成海報背景和圖片

wxmlapi

bgimgPromise.then(res => {
      console.log('Promise.all', res)
      const ctx = wx.createCanvasContext('shareImg')
      ctx.width = windowWidth
      ctx.height = posterHeight
      console.log(windowWidth, posterHeight)
      // 背景圖
      ctx.drawImage('../../' + res[0].path, 0, 0, windowWidth, posterHeight, 0, 0)
      // 頭像
      ctx.drawImage(that.data.userInfo.avatarUrl, 48, 182, 58, 58, 0, 0)
      ctx.setTextAlign('center')
      ctx.setFillStyle('#000')
      ctx.setFontSize(22)
      // ctx.fillText('分享文字2:stark.wang出品', 88, 414)
      ctx.fillText('分享文字1個人博客:https://shudong.wang', 55, 414)
      ctx.stroke()
      ctx.draw()
    })

保存到本地

onLoad: function () {
  share: function () {
    var that = this
    wx.showLoading({
      title: '正在製做海報。。。'
    })
    new Promise(function (resolve, reject) {
      wx.canvasToTempFilePath({
        x: 0,
        y: 0,
        width: 444,
        height: 500,
        destWidth: 555,
        destHeight: 666,
        canvasId: 'starkImg',
        success: function (res) {
          console.log(res.tempFilePath);
          that.setData({
            prurl: res.tempFilePath,
            hidden: false
          })
          wx.hideLoading()
          resolve(res)
        },
        fail: function (res) {
          console.log(res)
        }
      })
    }).then(res => {
      console.log(res)
      this.save()
    })
  }
}

結果

圖片描述
圖片描述

更新頭像裁剪爲圓形

ctx.save() // 對當前區域保存
ctx.beginPath() // 開始新的區域
ctx.arc(73, 224, 38, 0, 2 * Math.PI);
ctx.clip();  // 從畫布上裁剪出這個圓形
ctx.drawImage(res[1], 36, 186, 94, 94, 0, 0) // 把圖片填充進裁剪的圓形
ctx.restore() // 恢復

上面是遠程鏈接容易發生請求失敗

把頭像提早存到本地存儲中解決
getImg: function () {
  let avatarUrl = this.data.userInfo.avatarUrl
  downLoadFile(avatarUrl).then((res) => {
    console.log(res)
    wx.saveFile({
      tempFilePath: res.data.tempFilePath,
      success: function (res) {
        wx.setStorageSync('avatarUrl', res.savedFilePath)
      }
    })
  })
},

獲取頭像promise

// 頭像
let promiseAvatarUrl = new Promise(function (resolve, reject) {
  resolve(wx.getStorageSync('avatarUrl'))
}).catch(res=>{
  console.log('catch',res)
});

背景仍是不變app

const that = this
let promiseBdImg = new Promise(function (resolve, reject) {
  console.log('data', that.data)
  wx.getImageInfo({
    src: imagePath + "base1.png",
    success: function (res) {
      console.log('promiseBdImg', res)
      resolve(res);
    }
  })

此時生成canvas更新ide

Promise.all([
    promiseBdImg, promiseAvatarUrl
  ]).then(res => {
    console.log('Promise.all', res)
    const ctx = wx.createCanvasContext('shareImg')
    ctx.width = windowWidth
    ctx.height = posterHeight
    console.log(windowWidth, posterHeight)
    //主要就是計算好各個圖文的位置
    ctx.drawImage('../../' + res[0].path, 0, 0, windowWidth, posterHeight, 0, 0)
    ctx.save() // 對當前區域保存
    ctx.beginPath() // 開始新的區域
    ctx.arc(73, 224, 38, 0, 2 * Math.PI);
    ctx.clip();  // 從畫布上裁剪出這個圓形
    ctx.drawImage(res[1], 36, 186, 94, 94, 0, 0) // 把圖片填充進裁剪的圓形
    ctx.restore() // 恢復
    ctx.setTextAlign('center')
    ctx.setFillStyle('#000')
    ctx.setFontSize(22)
    ctx.save()
    ctx.beginPath();
    ctx.fillText('做者:stark.wang', 545 / 2, 130)
    ctx.fillText('個人博客:http://shudong.wang', 190, 414)
    ctx.stroke()
    ctx.draw()
  })

結果

完美

ok,若是能幫助你,請贊一個。

感受往後會須要,推薦收藏
相關文章
相關標籤/搜索