2018-02-13 11:17:05 -06:00
|
|
|
import 'multer'
|
|
|
|
import * as sharp from 'sharp'
|
2018-08-27 09:23:34 -05:00
|
|
|
import { remove } from 'fs-extra'
|
2018-02-13 11:17:05 -06:00
|
|
|
|
|
|
|
async function processImage (
|
2018-02-15 11:40:24 -06:00
|
|
|
physicalFile: { path: string },
|
2018-02-13 11:17:05 -06:00
|
|
|
destination: string,
|
|
|
|
newSize: { width: number, height: number }
|
|
|
|
) {
|
|
|
|
await sharp(physicalFile.path)
|
|
|
|
.resize(newSize.width, newSize.height)
|
|
|
|
.toFile(destination)
|
|
|
|
|
2018-08-27 09:23:34 -05:00
|
|
|
await remove(physicalFile.path)
|
2018-02-13 11:17:05 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
processImage
|
|
|
|
}
|