#author("2024-08-30T18:24:40+00:00","default:yoya","yoya")
#author("2024-08-30T18:26:16+00:00","default:yoya","yoya")
* canvas.toDataURL(imageType) [#j99bccc0]
- https://developer.mozilla.org/ja/docs/Web/API/HTMLCanvasElement/toDataURL
- File APIとCanvasでローカルの画像をアップロード→加工→ダウンロードする
-- https://www.tam-tam.co.jp/tipsnote/javascript/post13538.html
- Canvas上のイメージを画像ファイルとして保存する方法
-- https://st40.xyz/one-run/article/133/
* Image.decode [#p46f70fc]
- https://qiita.com/kerupani129/items/f0a12ebac5c6303915e2
const loadImage = async src => {
const image = new Image();
image.src = src;
await image.decode();
return image;
};
const image = await loadImage('image.png');
// ... image ..