blob: 5f254a7aaf04594de6af26331ef667b8c0b23eef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
import { remove, rename } from 'fs-extra'
import { convertWebPToJPG } from './ffmpeg-utils'
import { logger } from './logger'
const Jimp = require('jimp')
async function processImage (
path: string,
destination: string,
newSize: { width: number, height: number },
keepOriginal = false
) {
if (path === destination) {
throw new Error('Jimp needs an input path different that the output path.')
}
logger.debug('Processing image %s to %s.', path, destination)
let jimpInstance: any
try {
jimpInstance = await Jimp.read(path)
} catch (err) {
logger.debug('Cannot read %s with jimp. Try to convert the image using ffmpeg first.', path, { err })
const newName = path + '.jpg'
await convertWebPToJPG(path, newName)
await rename(newName, path)
jimpInstance = await Jimp.read(path)
}
await remove(destination)
await jimpInstance
.resize(newSize.width, newSize.height)
.quality(80)
.writeAsync(destination)
if (keepOriginal !== true) await remove(path)
}
// ---------------------------------------------------------------------------
export {
processImage
}
|