主頁(yè) > 知識(shí)庫(kù) > canvas實(shí)現(xiàn)二維碼和圖片合成的示例代碼

canvas實(shí)現(xiàn)二維碼和圖片合成的示例代碼

熱門(mén)標(biāo)簽:鎮(zhèn)江智能外呼系統(tǒng)有效果嗎 電銷機(jī)器人電話用什么卡 江蘇智能電銷機(jī)器人哪家好 黃島區(qū)地圖標(biāo)注 南寧點(diǎn)撥外呼系統(tǒng)哪家公司做的好 當(dāng)涂高德地圖標(biāo)注 成都智能外呼系統(tǒng)平臺(tái) 云南大理400電話申請(qǐng)官方 四川點(diǎn)撥外呼系統(tǒng)

上個(gè)版本街道一個(gè)需求,使用url生成一個(gè)二維碼,然后和另外一張圖片合成一張圖拍你,

實(shí)現(xiàn)思路是這樣的

  1. 使用jr-qrcode將url生成data:base64供img使用
  2. 然后使用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 (
            <div>
                <img  alt='mix_img' id='mix_img'/>
            </div>
        )
    }

}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

標(biāo)簽:十堰 南京 咸寧 西寧 廣西 淮安 佳木斯 酒泉

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《canvas實(shí)現(xiàn)二維碼和圖片合成的示例代碼》,本文關(guān)鍵詞  canvas,實(shí)現(xiàn),二維,碼,和,圖片,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《canvas實(shí)現(xiàn)二維碼和圖片合成的示例代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于canvas實(shí)現(xiàn)二維碼和圖片合成的示例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章