An open API service indexing awesome lists of open source software.

https://github.com/gavinning/imgsize

获取图片宽高
https://github.com/gavinning/imgsize

Last synced: over 1 year ago
JSON representation

获取图片宽高

Awesome Lists containing this project

README

          

imgsize
---
Get image size

### Webpack
```sh
npm i imgsize --save
```

### Usage
```js
import size from 'imgsize'
```
Promise
```js
size(imgurl).then(img => console.log(img.width, img.height))
```

Async await
```js
(async function(){
let img = await size(imgurl)
console.log(img.width, img.height)
})()
```