1
0
mirror of synced 2025-12-20 02:19:14 -05:00
Files
docs/script/list-image-sizes.js
Vanessa Yuen 3df90fc9b8 Hello git history spelunker!
Are you looking for something? Here is all of the GitHub Docs history in one single commit. Enjoy! 🎉
2020-09-27 14:10:11 +02:00

33 lines
958 B
JavaScript
Executable File

#!/usr/bin/env node
const path = require('path')
const walk = require('walk-sync')
const imageSize = require('image-size')
const { chain } = require('lodash')
const imagesPath = path.join(__dirname, '../assets/images')
const imagesExtensions = ['.jpg', '.jpeg', '.png', '.gif']
// [start-readme]
//
// This script lists all local image files, sorted by their dimensions.
//
// [end-readme]
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}`)
})