我需要在一个canvas
. 我想通过for-loop
.
我尝试了很多,但在最好的情况下只显示最后一张图像。我检查了这个胎面,但我仍然只得到最后一张图像。
为了解释,这是我最新的代码(基本上是另一篇文章的代码):
for (var i = 0; i <= max; i++)
{
thisWidth = 250;
thisHeight = 0;
imgSrc = "photo_"+i+".jpg";
letterImg = new Image();
letterImg.onload = function() {
context.drawImage(letterImg,thisWidth*i,thisHeight);
}
letterImg.src = imgSrc;
}
有任何想法吗?