1
0
Fork 0
peertube/server/helpers/image-utils.ts

56 lines
1.3 KiB
TypeScript
Raw Normal View History

import { extname } from 'path'
2020-07-10 08:54:11 -04:00
import { remove, rename } from 'fs-extra'
import { convertWebPToJPG, processGIF } from './ffmpeg-utils'
2018-12-04 09:12:54 -05:00
import { logger } from './logger'
2020-07-10 08:54:11 -04:00
const Jimp = require('jimp')
async function processImage (
2019-04-24 03:56:25 -04:00
path: string,
destination: string,
newSize: { width: number, height: number },
keepOriginal = false
) {
const extension = extname(path)
// Use FFmpeg to process GIF
if (extension === '.gif') {
return processGIF(path, destination, newSize, keepOriginal)
}
2019-04-24 03:56:25 -04:00
if (path === destination) {
throw new Error('Jimp needs an input path different that the output path.')
2018-11-19 05:24:31 -05:00
}
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
2020-07-10 08:54:11 -04:00
let jimpInstance: any
try {
jimpInstance = await Jimp.read(path)
} catch (err) {
2020-10-26 11:44:23 -04:00
logger.debug('Cannot read %s with jimp. Try to convert the image using ffmpeg first.', path, { err })
2020-07-10 08:54:11 -04:00
const newName = path + '.jpg'
await convertWebPToJPG(path, newName)
await rename(newName, path)
jimpInstance = await Jimp.read(path)
}
2018-11-19 05:24:31 -05:00
await remove(destination)
await jimpInstance
.resize(newSize.width, newSize.height)
.quality(80)
.writeAsync(destination)
2019-04-24 03:56:25 -04:00
if (keepOriginal !== true) await remove(path)
}
// ---------------------------------------------------------------------------
export {
processImage
}