Skip to content

Calculate the pixel size (width/height) of a string (with integrated caching)

License

Notifications You must be signed in to change notification settings

alexpaxton/calculate-size

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

calculate-size Build Status npm version

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

About

Calculate the pixel size (width/height) of a string (with integrated caching)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 47.6%
  • JavaScript 41.7%
  • HTML 10.7%