溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

在微信小程序中怎么使用canvas+Painter插件制作二維碼

發(fā)布時間:2023-03-17 17:56:26 來源:億速云 閱讀:269 作者:iii 欄目:移動開發(fā)

本篇內(nèi)容介紹了“在微信小程序中怎么使用canvas+Painter插件制作二維碼”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!

一、實現(xiàn)原理

使用微信小程序的canvas組件進行繪制,但是在該組件用起來并不是很順手,所以使用了第三方的框架:Painter

用你的方法,把這個框架下載下來,里面會有示范代碼,我們只需要把其中的核心代碼拿出來就行。

二、實現(xiàn)代碼

前期準備

1、新建components文件夾,放置painter核心代碼

在微信小程序中怎么使用canvas+Painter插件制作二維碼

2、新建palette文件夾,放置繪制實現(xiàn)代碼

在微信小程序中怎么使用canvas+Painter插件制作二維碼

painter.js代碼

export default class LastMayday {
  palette(viewList) {
    return (
      viewList
    );
  }
}

3、新建繪制的具體屬性信息文件夾posterViewjs,放置例如繪制的大小、位置等信息js。

在微信小程序中怎么使用canvas+Painter插件制作二維碼

二維碼繪制屬性信息js代碼

const getPosterView01 = (qrcodeText) => {
  const poster01 = {
    "width": "256px",
    "height": "256px",
    "background": "#f8f8f8",
    "views": [{
      "type": "qrcode",
      "content": qrcodeText,
      "css": {
        "color": "#000000",
        "background": "#ffffff",
        "width": "256px",
        "height": "256px",
        "top": "0px",
        "left": "0px",
        "rotate": "0",
        "borderRadius": "0px"
      }
    }]
  }
  return poster01
}

module.exports = {
  getPosterView01: getPosterView01
}

實現(xiàn)

實現(xiàn)頁面目錄結(jié)構(gòu)

在微信小程序中怎么使用canvas+Painter插件制作二維碼

wxml代碼

<view class="flex-jc-ac-col" style="margin-top: 200rpx;">
  <image class="qrcode-img" src="{{imgUrl?imgUrl:''}}" mode="widthFix"></image>
  <button type="primary" style="margin-top: 105rpx;" bindtap="makeQRCodeTap">生成二維碼</button>
</view>

<!-- canvas隱藏 -->
<painter customStyle='position: absolute; left: -9999rpx;' customActionStyle="{{customActionStyle}}"
  dancePalette="{{template}}" palette="{{paintPallette}}" bind:imgOK="onImgOK" bind:touchEnd="touchEnd"
  action="{{action}}" use2D="{{true}}" widthPixels="720" />
<!-- canvas隱藏 -->

wxss代碼

.qrcode-img{
  background-color: #999999;
  height: 300rpx;
  width: 300rpx;
}

json代碼

注意記得在使用的頁面引用painter組件

{
  "usingComponents": {
    "painter":"/components/painter/painter"
  },
  "navigationBarTitleText": "繪制二維碼"
}

JS代碼

// pages/makeQRCode/makeQRCode.js
import poster from '../../palette/painter'
const posterView = require("../../posterViewjs/posterView")
Page({

  /**
   * 頁面的初始數(shù)據(jù)
   */
  data: {
    imgUrl: null,
    QRCodeText: "2d44d6c26134f8a109df65897107089a2d44d6c26134f8a109df65897107089a",
    paintPallette: '',
  },

  /**
   * 生命周期函數(shù)--監(jiān)聽頁面加載
   */
  onLoad() {

  },

  /**
   * 生命周期函數(shù)--監(jiān)聽頁面顯示
   */
  onShow () {

  },

  /** 生成海報點擊監(jiān)聽 */
  makeQRCodeTap() {
    wx.showLoading({
      title: '獲取海報中',
      mask: true
    })
    // 繪制海報
    this.makePoster(this.data.QRCodeText)
  },

  /** 繪制完成后的回調(diào)函數(shù)*/
  onImgOK(res) {
    wx.hideLoading()
    // 這個路徑就可以作為保存圖片時的資源路徑
    // console.log("海報臨時路徑", res.detail.path)
    this.setData({
      imgUrl: res.detail.path
    })
  },

  /** 生成海報 */
  makePoster(qrcodeText) {
    wx.showLoading({
      title: '生成海報中',
    })
    // 這是繪制海報所用到JSON數(shù)據(jù)
    const viewList = posterView.getPosterView01(qrcodeText)
    this.setData({
      paintPallette: new poster().palette(viewList)
    })
  },



  /**
   * 用戶點擊右上角分享
   */
  onShareAppMessage() {}
})

“在微信小程序中怎么使用canvas+Painter插件制作二維碼”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI