Package Exports
- calculate-size
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (calculate-size) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
calculate-size

Calculate the pixel size (width/height) of a string (with integrated caching)
Install
This package supports Typescript out-of-the-box
$ npm install calculate-size
Usage
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