TypeError: a.onload is not a functionが発生する
TypeError: a.onload is not a functionが発生する
javascriptでImageを読み込んだら、canvasのdrawImageをしたいのですが
onloadでタイプエラーが発生します。。
どこがおかしいのでしょうか?
発生している問題・エラー
TypeError: a.onload is not a function
該当するソースコード
let ctx = new Image();
ctx.onload(() => {
this.compositedImage.drawImage(ctx, 0, 0, ctx.width, ctx.height, 0, 0, is.compositedCanvas.width, this.compositedCanvas.height);
resolver(this);
}, this);
このコードはPromiseの中に書かれているのでそれも影響しているのかと、、
よろしくお願いいたします。
0