Created
May 27, 2017 02:01
-
-
Save jktravis/967184c1457e3ed3c5b95c993121044d to your computer and use it in GitHub Desktop.
Converts a Font Awesome font into a image using canvas.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Thanks to Jake Trent for the tip on how to do this | |
// https://jaketrent.com/post/react-dnd-text-drag-preview/ | |
// Create the canvas | |
const c = document.createElement('canvas'); | |
const ctx = c.getContext('2d'); | |
const body = document.querySelector('body'); | |
body.appendChild(c); | |
ctx.rect(0, 0, 100, 100); | |
ctx.save(); | |
ctx.fillStyle = 'rgba(255, 255, 255, 0)'; | |
ctx.strokeStyle = 'rgba(255, 255, 255, 0)'; | |
ctx.fill(); | |
ctx.stroke(); | |
ctx.restore(); | |
// set the font awesome font | |
ctx.font = '35px FontAwesome'; | |
// set the text to the unicode value of the font. | |
ctx.fillText('\uf0f6', 35, 60); | |
const img = new Image(); | |
img.src = c.toDataURL(); | |
console.log(img); | |
body.appendChild(img); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment