calculate-size
Version:
Calculate the pixel size of a string
32 lines (22 loc) • 763 B
Markdown
calculate-size [](https://travis-ci.org/schickling/calculate-size) [](https://badge.fury.io/js/calculate-size)
==============
Calculate the pixel size (width/height) of a string (with integrated caching)
## Install
> This package supports Typescript out-of-the-box
```sh
$ npm install calculate-size
```
## Usage
```js
const size = calculateSize('Hello world!', {
font: 'Arial',
fontSize: '12px'
})
### Options
* `font: string`
* `fontSize: string`
* `fontWeight: string`
* `width: string` (Constraint width by a fixed value to calc height)
console.log(size.width) // 140
console.log(size.height) // 20
```