Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created December 14, 2019 13:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreasvirkus/aed6439b05abb2f9d4acc2e795acd5c9 to your computer and use it in GitHub Desktop.
Save andreasvirkus/aed6439b05abb2f9d4acc2e795acd5c9 to your computer and use it in GitHub Desktop.
export const convertTextToImage = (context, text, font = 'normal normal 24px cursive', color = '#000000') => {
context.font = font
context.fillStyle = color
context.fillText(text, 0, 10)
context.canvas.width = context.measureText(text).width
return context.canvas.toDataURL()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment