Last active
July 11, 2019 18:42
-
-
Save mariotacke/494aea915fe4c27278da0482a03d27cb to your computer and use it in GitHub Desktop.
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
const fontHeight = 12; | |
if (width && height) { | |
// canvas setup removed for brevity | |
hiddenContext.drawImage(video, 0, 0, width, height); | |
outputContext.textBaseline = 'top'; | |
outputContext.font = `${fontHeight}px Consolas`; | |
const text = outputContext.measureText('@'); | |
const fontWidth = parseInt(text.width); | |
// more processing | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment