Merge API branch into main #12

Merged
SemvdH merged 334 commits from api into main 2023-06-13 19:54:43 +00:00
Showing only changes of commit 2ac3f22ea7 - Show all commits

View File

@@ -71,6 +71,7 @@
let ctx = msg.getContext("2d");
let image = new Image();
image.src = URL.createObjectURL(e.data);
console.log(image.width);
image.addEventListener("load", (e) => {
ctx.drawImage(image, 0, 0, 800, 600);
});