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

62 lines
1.5 KiB
TypeScript
Raw Normal View History

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