forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list-image-sizes.js
executable file
·44 lines (39 loc) · 1.26 KB
/
list-image-sizes.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env node
// [start-readme]
//
// This script lists all local image files, sorted by their dimensions.
//
// NOTE: If you get this error:
//
// Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'image-size' ...
//
// it's because you haven't installed all the *optional* dependencies.
// To do that, run:
//
// npm install --include=optional
//
// [end-readme]
import { fileURLToPath } from 'url'
import path from 'path'
import walk from 'walk-sync'
import imageSize from 'image-size'
import { chain } from 'lodash-es'
const __dirname = path.dirname(fileURLToPath(import.meta.url))
const imagesPath = path.join(__dirname, '../assets/images')
const imagesExtensions = ['.jpg', '.jpeg', '.png', '.gif']
const images = chain(walk(imagesPath, { directories: false }))
.filter((relativePath) => {
return imagesExtensions.includes(path.extname(relativePath.toLowerCase()))
})
.map((relativePath) => {
const fullPath = path.join(imagesPath, relativePath)
const { width, height } = imageSize(fullPath)
const size = width * height
return { relativePath, width, height, size }
})
.orderBy('size', 'desc')
.value()
images.forEach((image) => {
const { relativePath, width, height } = image
console.log(`${width} x ${height} - ${relativePath}`)
})