圖片 文字合成


 
        
//圖片文字合成
synthesis(type, text, myId) {
let imgURL;
switch (type) {
case '1.html' :
imgURL = 'static/images/1.png';
break;
case '2.html' :
imgURL = 'static/images/2.png';
break;
case '3.html' :
imgURL = 'static/images/3.png';
break;

default:
imgURL = 'static/images/4.png';
break;
}
let img;
document.getElementById(myId).height = 0;
document.getElementById(myId).height = 100;
var mainCtx = document.getElementById(myId).getContext("2d");

// 創建一個待合成圖片
var starImg = new Image();
starImg.src = imgURL;
starImg.onload = function () {
//圖片繪制
mainCtx.drawImage(starImg, 31, 18, 38, 32);
//文本,圖片合成
mainCtx.font = "normal 500 14px Arial";
mainCtx.fillStyle = "#073061";
mainCtx.textAlign = "center";
mainCtx.fillText(text, 50, 70, 80);
//導出合成圖片
var mycanvas = document.getElementById(myId);
img = mycanvas.toDataURL("image/jpeg", 1.0);
};
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM