PeerTube/server/helpers/image-utils.ts

62 lines
1.5 KiB
TypeScript
Raw Normal View History

2020-07-10 14:54:11 +02:00
import { remove, rename } from 'fs-extra'
2020-11-25 09:50:12 +01:00
import { extname } from 'path'
import { convertWebPToJPG, processGIF } 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
) {
const extension = extname(path)
2020-11-25 09:50:12 +01: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 09:50:12 +01:00
await processGIF(path, destination, newSize)
} else {
await jimpProcessor(path, destination, newSize)
}
2020-11-25 09:50:12 +01:00
if (keepOriginal !== true) await remove(path)
}
2018-11-19 11:24:31 +01:00
2020-11-25 09:50:12 +01:00
// ---------------------------------------------------------------------------
2018-11-19 11:24:31 +01:00
2020-11-25 09:50:12 +01:00
export {
processImage
}
// ---------------------------------------------------------------------------
async function jimpProcessor (path: string, destination: string, newSize: { width: number, height: number }) {
2020-07-10 14:54:11 +02:00
let jimpInstance: any
try {
jimpInstance = await Jimp.read(path)
} catch (err) {
2020-10-26 16:44:23 +01:00
logger.debug('Cannot read %s with jimp. Try to convert the image using ffmpeg first.', path, { err })
2020-07-10 14:54:11 +02:00
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)
}