2
新しいimage()とtypescriptを使って読み込んだ画像から情報を得たいです。私はこのコードを試してみてください。typescriptのimageからonloadイベントを使用するにはどうすればよいですか?
width;
heigth;
init(){
let image = new Image();
image.src = "url";
image.onload((event) => {
this.width = event.width;
this.heigth = event.heigth;
})
}
をしかし、私はこのエラーを取得:
void' is not assignable to parameter of type 'Event'. Property 'bubbles' is missing in type '() => void'
私はこのイベントを使用する方法の例を検索するが、私は何かを見つけることができません。