Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. const fontHeight = 12;
  2.  
  3. if (width && height) {
  4. // canvas setup removed for brevity
  5. hiddenContext.drawImage(video, 0, 0, width, height);
  6.  
  7. outputContext.textBaseline = 'top';
  8. outputContext.font = `${fontHeight}px Consolas`;
  9.  
  10. const text = outputContext.measureText('@');
  11. const fontWidth = parseInt(text.width);
  12.  
  13. // more processing
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement