def setup
background(220)
img = createImg('https://p5js.org/assets/img/asterisk-01.png', 'logo')
img.position(0, 0)
img.size(width, height)
end
DOMのイメージ要素を生成します。
| 引数名 | 内容 | 備考 | オプション | デフォルト値 |
|---|---|---|---|---|
| src | データソースまたは イメージ画像の URL | |||
| alt | 代替テキスト | |||
| crossOrigin | イメージ要素の crossoriginプロパティ 'anonymous' 'use-credentials' | ○ | ''(空文字) |
p5.Elementオブジェクト
(<img>タグの HTMLエレメント)