npm.io
1.0.0 • Published 11 years ago

image-size-parser

Licence
MIT
Version
1.0.0
Deps
0
Vulns
0
Weekly
0
Stars
4

image-size-parser

Build Status Dependency Status devDependency Status

Parse the size of an image from a string. '120x20@2x' → {width: 240, height: 40}

Install

npm install image-size-parser

Usage

var parseImageSize = require('image-size-parser').parse;

parseImageSize('10x10'); // {width: 10, height: 10}
parseImageSize('120x20@2x'); // {width: 240, height: 40}
parseImageSize('10x20@5x'); // {width: 50, height: 100}

License

MIT

Keywords