
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Measure text height on an HTML5 canvas element
To get the text height, set the font in pt −
context.font="15pt Calibri";
Now, get the height like the following −
var height = parseInt(context.font.match(/\d+/), 10);
Above we have used a match to separate the font size from font face.
Advertisements