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