1
0
Fork 0
peertube/server/helpers/image-utils.ts

37 lines
846 B
TypeScript
Raw Normal View History

import 'multer'
2018-12-04 14:12:54 +00:00
import { readFile, remove } from 'fs-extra'
import { logger } from './logger'
const Jimp = require('jimp')
async function processImage (
2019-04-24 07:56:25 +00:00
path: string,
destination: string,
newSize: { width: number, height: number },
keepOriginal = false
) {
2019-04-24 07:56:25 +00:00
if (path === destination) {
throw new Error('Jimp needs an input path different that the output path.')
2018-11-19 10:24:31 +00:00
}
2019-04-24 07:56:25 +00:00
logger.debug('Processing image %s to %s.', path, destination)
2018-11-19 10:24:31 +00:00
2018-12-04 14:12:54 +00:00
// Avoid sharp cache
2019-04-24 07:56:25 +00:00
const buf = await readFile(path)
const jimpInstance = await Jimp.read(buf)
2018-11-19 10:24:31 +00:00
await remove(destination)
await jimpInstance
.resize(newSize.width, newSize.height)
.quality(80)
.writeAsync(destination)
2019-04-24 07:56:25 +00:00
if (keepOriginal !== true) await remove(path)
}
// ---------------------------------------------------------------------------
export {
processImage
}