商城系統(tǒng) 注冊

小程序生成海報保存分享圖片完全指南

2020-09-27|HiShop
導讀:在我們分享小程序時,會有一個圖片式的海報,這種功能顯示是如何顯示的,下面小編為大家解答小程序生成海報保存分享圖片完全指南...

在我們分享小程序時,會有一個圖片式的海報,這種功能顯示是如何顯示的,下面小編為大家解答小程序生成海報保存分享圖片完全指南

小程序生成海報保存分享圖片完全指南

業(yè)務

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

實現(xiàn)思路

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

小程序生成海報保存分享圖片完全指南

注意事項 難點

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

技術棧

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

實戰(zhàn)

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

根據(jù)屏幕動態(tài)計算海報的尺寸

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);
      }
    })
  });

頭像直接使用遠程頭像

初始化的時候,調(diào)取,一定在生成海報之前
此處可以存儲本地,或使用狀態(tài)都可以

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
    })
  },

生成海報背景和圖片

wxml

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

上面是遠程連接容易發(fā)生請求失敗

把頭像提前存到本地存儲中解決
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)
      }
    })
  })
},

獲取頭像

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

背景還是不變

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更新

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() // 對當前區(qū)域保存
    ctx.beginPath() // 開始新的區(qū)域
    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()
  })

以上是小程序生成海報保存分享圖片完全指南,更多小程序開發(fā)內(nèi)容,請查看本網(wǎng)站,謝謝。

HiShop小程序工具提供多類型商城/門店小程序制作,可視化編輯 1秒生成5步上線。通過拖拽、拼接模塊布局小程序商城頁面,所看即所得,只需要美工就能做出精美商城。更多小程序商店請查看:小程序商店

電話咨詢 預約演示 0元開店