Skip to content

Instantly share code, notes, and snippets.

@evwltrs
Last active October 25, 2021 17:08
Show Gist options
  • Save evwltrs/1b0246eb963cb09ade2fcee3d9520daf to your computer and use it in GitHub Desktop.
Save evwltrs/1b0246eb963cb09ade2fcee3d9520daf to your computer and use it in GitHub Desktop.
canvas emoji gen
let img = document.createElement("img")
img.src = "https://emojiapi.dev/api/v1/crown/400.png"
var canvas = document.getElementById("canvas")
var ctx = canvas.getContext("2d")
ctx.fillStyle = "blue"
ctx.fillRect(0, 0, canvas.width, canvas.height)
img.addEventListener("load", () => {
ctx.drawImage(
img,
canvas.width / 2 - img.width / 2,
canvas.height / 2 - img.height / 2
)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment