這篇文章主要介紹了關於canvas如何實現二維碼和圖片合成的程式碼,內容有一定的參考價值,希望可以幫助到有需要的朋友。
上個版本接到一個需求,使用url產生一個二維碼,然後和另外一張圖片合成一張圖。
實作想法是這樣的
使用jr-qrcode將url產生data:base64供img使用
遇到的問題產生圖片之後發現圖片很模糊,解決辦法是將canvas畫布擴大兩倍,其他參數也誇大兩倍就可以了
jr-qrcode 可以使用npm install --save jr-qrcode 安裝這個包作用就是可以轉換text到data:base64 供img的src 使用
程式碼如下
import React, { Component } from 'react' const qrcode = require('jr-qrcode') const loadImg = (src) => { const paths = Array.isArray(src) ? src : [src]; const promise = []; paths.forEach((path) => { promise.push(new Promise((resolve, reject) => { let img = new Image(); img.crossOrigin = "Anonymous"; img.src = path; img.onload = () => { resolve(img); }; img.onerror = (err) => { console.log('图片加载失败') } })) }); return Promise.all(promise); } const getImageData = (url, src) => { const imgsrc = qrcode.getQrBase64(url) let canvas = document.createElement('canvas') const width = document.documentElement.clientWidth const height = document.documentElement.clientHeight canvas.width = width*2 canvas.height = height*2 let ctx = canvas.getContext("2d") loadImg([imgsrc, src]).then(([img1, img2]) => { ctx.drawImage(img2, 0, 0, width*2, height*2) ctx.drawImage(img1, width-80, height*2-220, 200, 160) ctx.fillStyle = 'rgba(0,0,0,0.3)'; ctx.fillRect(width-80, height*2-60, 200, 40); ctx.save() ctx.font="28px Arial" ctx.fillStyle = '#fff'; ctx.fillText('长按识别二维码', width-80, height*2-30, 200, 160) let imageURL = canvas.toDataURL("image/png") document.getElementById('mix_img').setAttribute('src',imageURL) }) } export default class QRcode extends Component { render() { const { url , picSrc} = this.props getImageData(url,picSrc) return ( <p> <img alt='mix_img' id='mix_img'/> </p> ) } }相關推薦:
以上是canvas如何實現二維碼與圖片合成的程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!