PeerTube/server/helpers/image-utils.ts

36 lines
820 B
TypeScript
Raw Normal View History

import 'multer'
import * as sharp from 'sharp'
2018-12-04 15:12:54 +01:00
import { readFile, remove } from 'fs-extra'
import { logger } from './logger'
async function processImage (
2019-04-24 09:56:25 +02:00
path: string,
destination: string,
newSize: { width: number, height: number },
keepOriginal = false
) {
2019-04-24 09:56:25 +02:00
if (path === destination) {
2018-11-19 11:24:31 +01:00
throw new Error('Sharp needs an input path different that the output path.')
}
2019-04-24 09:56:25 +02:00
logger.debug('Processing image %s to %s.', path, destination)
2018-11-19 11:24:31 +01:00
2018-12-04 15:12:54 +01:00
// Avoid sharp cache
2019-04-24 09:56:25 +02:00
const buf = await readFile(path)
2018-12-04 15:12:54 +01:00
const sharpInstance = sharp(buf)
2018-11-19 11:24:31 +01:00
await remove(destination)
await sharpInstance
.resize(newSize.width, newSize.height)
.toFile(destination)
2019-04-24 09:56:25 +02:00
if (keepOriginal !== true) await remove(path)
}
// ---------------------------------------------------------------------------
export {
processImage
}