PeerTube/server/helpers/image-utils.ts

48 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-07-10 14:54:11 +02:00
import { remove, rename } from 'fs-extra'
import { convertWebPToJPG } from './ffmpeg-utils'
2018-12-04 15:12:54 +01:00
import { logger } from './logger'
2020-07-10 14:54:11 +02:00
const Jimp = require('jimp')
async function processImage (
2019-04-24 09:56:25 +02:00
path: string,
destination: string,
newSize: { width: number, height: number },
keepOriginal = false
) {
2019-04-24 09:56:25 +02:00
if (path === destination) {
throw new Error('Jimp needs an input path different that the output path.')
2018-11-19 11:24:31 +01:00
}
2019-04-24 09:56:25 +02:00
logger.debug('Processing image %s to %s.', path, destination)
2018-11-19 11:24:31 +01:00
2020-07-10 14:54:11 +02:00
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.', { err })
const newName = path + '.jpg'
await convertWebPToJPG(path, newName)
await rename(newName, path)
jimpInstance = await Jimp.read(path)
}
2018-11-19 11:24:31 +01:00
await remove(destination)
await jimpInstance
.resize(newSize.width, newSize.height)
.quality(80)
.writeAsync(destination)
2019-04-24 09:56:25 +02:00
if (keepOriginal !== true) await remove(path)
}
// ---------------------------------------------------------------------------
export {
processImage
}