peertube-plugin-livechat/build-avatars.js

34 lines
735 B
JavaScript
Raw Normal View History

2022-01-06 23:53:54 +00:00
#!/bin/node
const sharp = require('sharp')
const path = require('path')
const inputDir = './public/images/avatars/'
const outputDir = './dist/server/avatars/'
const backgrounds = [
'#ffffff',
'#000000',
'#ff0000',
'#00ff00',
'#0000ff',
'#808000',
'#ffff00',
'#008000',
'#008080',
'#00ffff',
'#000080',
'#800080',
'#ff00ff'
]
const count = 10
for (let i = 1; i <= count; i++) {
const inputFile = path.join(inputDir, i + '.svg')
for (let j = 0; j < backgrounds.length; j++) {
const out = i + (count * j)
const background = backgrounds[j]
2022-01-07 10:29:20 +00:00
sharp(inputFile).flatten({background}).resize(120, 120).jpeg({quality: 95, mozjpeg: true}).toFile(path.join(outputDir, out.toString() + '.jpg'))
2022-01-06 23:53:54 +00:00
}
}