您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)如何使用canvas實(shí)現(xiàn)二維碼和圖片合成的功能,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
上個(gè)版本接到一個(gè)需求,使用url生成一個(gè)二維碼,然后和另外一張圖片合成一張圖。
實(shí)現(xiàn)思路是這樣的
使用jr-qrcode將url生成data:base64供img使用
然后使用canvas 將兩張圖合成一張圖片
遇到的問(wèn)題
生成圖片之后發(fā)現(xiàn)圖片很模糊,解決辦法是將canvas畫(huà)布擴(kuò)大兩倍,其他參數(shù)也夸大兩倍就可以了
jr-qrcode 可以使用npm install --save jr-qrcode 安裝這個(gè)包
作用就是可以轉(zhuǎn)化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('長(zhǎng)按識(shí)別二維碼', 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> ) } }
看完上述內(nèi)容,你們對(duì)如何使用canvas實(shí)現(xiàn)二維碼和圖片合成的功能有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。