国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

js使用Canvas將多張圖片合并成一張的實(shí)現(xiàn)代碼

瀏覽:187日期:2024-04-02 16:42:41

解決方案

function mergeImgs(list) { const imgDom = document.createElement(’img’) document.body.appendChild(imgDom) const canvas = document.createElement(’canvas’) canvas.width = 500 canvas.height = 500 * list.length const context = canvas.getContext(’2d’) list.map((item, index) => { const img = new Image() img.src = item // 跨域 img.crossOrigin = ’Anonymous’ img.onload = () => { context.drawImage(img, 0, 500 * index, 500, 500) const base64 = canvas.toDataURL(’image/png’) imgDom.setAttribute(’src’, base64) // console.log(baseList) } })}const urlList = [’./img/timg%20(1).jpg’, ’./img/timg.jpg’]mergeImgs(urlList )

代碼稍微優(yōu)化一下,改成公共方法

/** * 合并多張圖片,返回新的圖片 * @param {Array} list 圖片url數(shù)組 * @param {Number} cwith 畫布寬度 默認(rèn)500 * @param {Number} cheight 畫布高度 默認(rèn)500 */function mergeImgs(list, cwith = 500, cheight = 500) { return new Promise((resolve, reject) => { const baseList = [] const canvas = document.createElement(’canvas’) canvas.width = cwith canvas.height = cheight * list.length const context = canvas.getContext(’2d’) list.map((item, index) => { const img = new Image() img.src = item // 跨域 img.crossOrigin = ’Anonymous’ img.onload = () => { context.drawImage(img, 0, cheight * index, cwith, cheight) const base64 = canvas.toDataURL(’image/png’) baseList.push(base64) if (baseList[list.length - 1]) { console.log(baseList) // 返回新的圖片 resolve(baseList[list.length - 1]) } } }) })}const urlList = [’./img/timg%20(1).jpg’, ’./img/timg.jpg’]mergeImgs(urlList ).then(base64 => {const imgDom = document.createElement(’img’)imgDom.src = base64document.body.appendChild(imgDom)})

效果

js使用Canvas將多張圖片合并成一張的實(shí)現(xiàn)代碼

到此這篇關(guān)于js使用Canvas將多張圖片合并成一張的實(shí)現(xiàn)代碼的文章就介紹到這了,更多相關(guān)js canvas圖片合并一張內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: JavaScript
相關(guān)文章:
主站蜘蛛池模板: 视频| 广饶县| 乡宁县| 马鞍山市| 佛冈县| 长兴县| 乐安县| 娄烦县| 白玉县| 上虞市| 页游| 娄底市| 贵阳市| 白城市| 纳雍县| 五峰| 东乌珠穆沁旗| 南涧| 伊宁市| 京山县| 灵台县| 奈曼旗| 莆田市| 涪陵区| 剑川县| 遂昌县| 城口县| 松溪县| 泽普县| 鱼台县| 郓城县| 西宁市| 临颍县| 芜湖县| 永定县| 嘉峪关市| 彭州市| 通州区| 惠来县| 泗阳县| 乐亭县|