PeerTube/server/helpers/image-utils.ts

35 lines
839 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 (
2018-02-15 18:40:24 +01:00
physicalFile: { path: string },
destination: string,
newSize: { width: number, height: number }
) {
2018-11-19 11:24:31 +01:00
if (physicalFile.path === destination) {
throw new Error('Sharp needs an input path different that the output path.')
}
2018-12-04 15:12:54 +01:00
logger.debug('Processing image %s to %s.', physicalFile.path, destination)
2018-11-19 11:24:31 +01:00
2018-12-04 15:12:54 +01:00
// Avoid sharp cache
const buf = await readFile(physicalFile.path)
const sharpInstance = sharp(buf)
2018-11-19 11:24:31 +01:00
await remove(destination)
await sharpInstance
.resize(newSize.width, newSize.height)
.toFile(destination)
2018-08-27 16:23:34 +02:00
await remove(physicalFile.path)
}
// ---------------------------------------------------------------------------
export {
processImage
}