我想创建一个小游戏的背景图,但是背景没有显示,一闪而过。能获取到宽高,但是没显示?
let c=wx.createCanvas(); let Background=c.getContext("2d"); let img= wx.createImage(); img.src="./images/微信图片_20230214130820.jpg" img.onload=function(){ console.log(img.width,img.height); Background.drawImage(img,0,0,img.width,img.height,0,0,375,667); }