1.0.0 • Published 9 years ago

image-size-parser v1.0.0

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

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