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