mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 00:47:31 +09:00
8 lines
215 B
HTML
8 lines
215 B
HTML
<script type="text/javascript">
|
|
function run() {
|
|
var cx = canvas.getContext("2d");
|
|
canvas.toDataURL("image/png");
|
|
}
|
|
</script>
|
|
<body onload="run()">
|
|
<canvas width="1" height="65536" id="canvas"></canvas>
|