image-size-parser

1.0.0 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i image-size-parser

Weekly Downloads

5

Version

1.0.0

License

MIT

Last publish

Collaborators

  • neoziro