2023-07-31 08:34:36 -04:00
|
|
|
import { copy, remove } from 'fs-extra/esm'
|
|
|
|
import { readFile, rename } from 'fs/promises'
|
2022-02-11 04:51:33 -05:00
|
|
|
import { join } from 'path'
|
2023-05-22 11:04:39 -04:00
|
|
|
import { ColorActionName } from '@jimp/plugin-color'
|
2023-07-31 08:34:36 -04:00
|
|
|
import { buildUUID, getLowercaseExtension } from '@peertube/peertube-node-utils'
|
|
|
|
import { convertWebPToJPG, generateThumbnailFromVideo, processGIF } from './ffmpeg/index.js'
|
|
|
|
import { logger, loggerTagsFactory } from './logger.js'
|
|
|
|
|
|
|
|
import type Jimp from 'jimp'
|
2022-02-11 04:51:33 -05:00
|
|
|
|
|
|
|
const lTags = loggerTagsFactory('image-utils')
|
2020-07-10 08:54:11 -04:00
|
|
|
|
2021-04-08 05:23:45 -04:00
|
|
|
function generateImageFilename (extension = '.jpg') {
|
2021-06-28 11:30:59 -04:00
|
|
|
return buildUUID() + extension
|
2021-04-08 05:23:45 -04:00
|
|
|
}
|
|
|
|
|
2022-06-27 05:53:12 -04:00
|
|
|
async function processImage (options: {
|
|
|
|
path: string
|
|
|
|
destination: string
|
|
|
|
newSize: { width: number, height: number }
|
|
|
|
keepOriginal?: boolean // default false
|
|
|
|
}) {
|
|
|
|
const { path, destination, newSize, keepOriginal = false } = options
|
|
|
|
|
2021-06-08 03:33:03 -04:00
|
|
|
const extension = getLowercaseExtension(path)
|
2020-11-25 03:26:31 -05:00
|
|
|
|
2020-11-25 03:50:12 -05: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)
|
|
|
|
|
2020-11-25 03:26:31 -05:00
|
|
|
// Use FFmpeg to process GIF
|
|
|
|
if (extension === '.gif') {
|
2023-04-21 08:55:10 -04:00
|
|
|
await processGIF({ path, destination, newSize })
|
2020-11-25 03:50:12 -05:00
|
|
|
} else {
|
2021-02-16 04:19:09 -05:00
|
|
|
await jimpProcessor(path, destination, newSize, extension)
|
2020-11-25 03:26:31 -05:00
|
|
|
}
|
|
|
|
|
2020-11-25 03:50:12 -05:00
|
|
|
if (keepOriginal !== true) await remove(path)
|
|
|
|
}
|
2018-11-19 05:24:31 -05:00
|
|
|
|
2022-06-27 05:53:12 -04:00
|
|
|
async function generateImageFromVideoFile (options: {
|
|
|
|
fromPath: string
|
|
|
|
folder: string
|
|
|
|
imageName: string
|
|
|
|
size: { width: number, height: number }
|
|
|
|
}) {
|
|
|
|
const { fromPath, folder, imageName, size } = options
|
|
|
|
|
2022-02-11 04:51:33 -05:00
|
|
|
const pendingImageName = 'pending-' + imageName
|
|
|
|
const pendingImagePath = join(folder, pendingImageName)
|
|
|
|
|
|
|
|
try {
|
2023-06-02 09:52:55 -04:00
|
|
|
await generateThumbnailFromVideo({ fromPath, output: pendingImagePath })
|
2022-02-11 04:51:33 -05:00
|
|
|
|
|
|
|
const destination = join(folder, imageName)
|
2022-06-27 05:53:12 -04:00
|
|
|
await processImage({ path: pendingImagePath, destination, newSize: size })
|
2022-02-11 04:51:33 -05:00
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot generate image from video %s.', fromPath, { err, ...lTags() })
|
|
|
|
|
|
|
|
try {
|
|
|
|
await remove(pendingImagePath)
|
|
|
|
} catch (err) {
|
|
|
|
logger.debug('Cannot remove pending image path after generation error.', { err, ...lTags() })
|
|
|
|
}
|
2023-07-19 10:02:49 -04:00
|
|
|
|
|
|
|
throw err
|
2022-02-11 04:51:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-01 02:50:28 -05:00
|
|
|
async function getImageSize (path: string) {
|
|
|
|
const inputBuffer = await readFile(path)
|
|
|
|
|
2023-07-31 08:34:36 -04:00
|
|
|
const Jimp = await import('jimp')
|
|
|
|
|
|
|
|
const image = await Jimp.default.read(inputBuffer)
|
2022-03-01 02:50:28 -05:00
|
|
|
|
|
|
|
return {
|
|
|
|
width: image.getWidth(),
|
|
|
|
height: image.getHeight()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 03:50:12 -05:00
|
|
|
// ---------------------------------------------------------------------------
|
2018-11-19 05:24:31 -05:00
|
|
|
|
2020-11-25 03:50:12 -05:00
|
|
|
export {
|
2021-04-08 05:23:45 -04:00
|
|
|
generateImageFilename,
|
2022-02-11 04:51:33 -05:00
|
|
|
generateImageFromVideoFile,
|
2022-03-01 02:50:28 -05:00
|
|
|
|
|
|
|
processImage,
|
|
|
|
|
|
|
|
getImageSize
|
2020-11-25 03:50:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2021-02-16 04:19:09 -05:00
|
|
|
async function jimpProcessor (path: string, destination: string, newSize: { width: number, height: number }, inputExt: string) {
|
2021-11-16 09:59:56 -05:00
|
|
|
let sourceImage: Jimp
|
2021-02-16 04:19:09 -05:00
|
|
|
const inputBuffer = await readFile(path)
|
2020-07-10 08:54:11 -04:00
|
|
|
|
2023-07-31 08:34:36 -04:00
|
|
|
const Jimp = await import('jimp')
|
|
|
|
|
2020-07-10 08:54:11 -04:00
|
|
|
try {
|
2023-07-31 08:34:36 -04:00
|
|
|
sourceImage = await Jimp.default.read(inputBuffer)
|
2020-07-10 08:54:11 -04:00
|
|
|
} 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'
|
2023-04-21 08:55:10 -04:00
|
|
|
await convertWebPToJPG({ path, destination: newName })
|
2020-07-10 08:54:11 -04:00
|
|
|
await rename(newName, path)
|
|
|
|
|
2023-07-31 08:34:36 -04:00
|
|
|
sourceImage = await Jimp.default.read(path)
|
2020-07-10 08:54:11 -04:00
|
|
|
}
|
2018-11-19 05:24:31 -05:00
|
|
|
|
|
|
|
await remove(destination)
|
|
|
|
|
2021-02-16 04:19:09 -05:00
|
|
|
// Optimization if the source file has the appropriate size
|
2021-06-08 03:33:03 -04:00
|
|
|
const outputExt = getLowercaseExtension(destination)
|
2021-11-16 09:59:56 -05:00
|
|
|
if (skipProcessing({ sourceImage, newSize, imageBytes: inputBuffer.byteLength, inputExt, outputExt })) {
|
2021-02-16 04:19:09 -05:00
|
|
|
return copy(path, destination)
|
|
|
|
}
|
|
|
|
|
2021-11-16 09:59:56 -05:00
|
|
|
await autoResize({ sourceImage, newSize, destination })
|
|
|
|
}
|
|
|
|
|
|
|
|
async function autoResize (options: {
|
|
|
|
sourceImage: Jimp
|
|
|
|
newSize: { width: number, height: number }
|
|
|
|
destination: string
|
|
|
|
}) {
|
|
|
|
const { sourceImage, newSize, destination } = options
|
|
|
|
|
Fix various typos
Found via `codespell -q 3 -S ./CREDITS.md,./CHANGELOG.md,./client/src/locale,./yarn.lock,./client/yarn.lock -L doubleclick,followings,nd,ot,ro,serie,splitted,tread,truthy`
2022-06-07 09:45:06 -04:00
|
|
|
// Portrait mode targeting a landscape, apply some effect on the image
|
2021-11-16 10:11:10 -05:00
|
|
|
const sourceIsPortrait = sourceImage.getWidth() < sourceImage.getHeight()
|
|
|
|
const destIsPortraitOrSquare = newSize.width <= newSize.height
|
|
|
|
|
2022-03-07 11:16:54 -05:00
|
|
|
removeExif(sourceImage)
|
|
|
|
|
2021-11-16 10:11:10 -05:00
|
|
|
if (sourceIsPortrait && !destIsPortraitOrSquare) {
|
2021-11-16 09:59:56 -05:00
|
|
|
const baseImage = sourceImage.cloneQuiet().cover(newSize.width, newSize.height)
|
2023-05-22 11:04:39 -04:00
|
|
|
.color([ { apply: ColorActionName.SHADE, params: [ 50 ] } ])
|
2021-11-16 09:59:56 -05:00
|
|
|
|
|
|
|
const topImage = sourceImage.cloneQuiet().contain(newSize.width, newSize.height)
|
|
|
|
|
|
|
|
return write(baseImage.blit(topImage, 0, 0), destination)
|
|
|
|
}
|
|
|
|
|
2021-11-16 10:11:10 -05:00
|
|
|
return write(sourceImage.cover(newSize.width, newSize.height), destination)
|
2021-11-16 09:59:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function write (image: Jimp, destination: string) {
|
|
|
|
return image.quality(80).writeAsync(destination)
|
2018-02-13 12:17:05 -05:00
|
|
|
}
|
2021-02-16 04:19:09 -05:00
|
|
|
|
|
|
|
function skipProcessing (options: {
|
2021-11-16 09:59:56 -05:00
|
|
|
sourceImage: Jimp
|
2021-02-16 04:19:09 -05:00
|
|
|
newSize: { width: number, height: number }
|
|
|
|
imageBytes: number
|
|
|
|
inputExt: string
|
|
|
|
outputExt: string
|
|
|
|
}) {
|
2021-11-16 09:59:56 -05:00
|
|
|
const { sourceImage, newSize, imageBytes, inputExt, outputExt } = options
|
2021-02-16 04:19:09 -05:00
|
|
|
const { width, height } = newSize
|
|
|
|
|
2022-03-07 11:16:54 -05:00
|
|
|
if (hasExif(sourceImage)) return false
|
2021-11-16 09:59:56 -05:00
|
|
|
if (sourceImage.getWidth() > width || sourceImage.getHeight() > height) return false
|
2021-02-16 04:19:09 -05:00
|
|
|
if (inputExt !== outputExt) return false
|
|
|
|
|
|
|
|
const kB = 1000
|
|
|
|
|
|
|
|
if (height >= 1000) return imageBytes <= 200 * kB
|
|
|
|
if (height >= 500) return imageBytes <= 100 * kB
|
|
|
|
|
|
|
|
return imageBytes <= 15 * kB
|
|
|
|
}
|
2022-03-07 11:16:54 -05:00
|
|
|
|
|
|
|
function hasExif (image: Jimp) {
|
|
|
|
return !!(image.bitmap as any).exifBuffer
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeExif (image: Jimp) {
|
|
|
|
(image.bitmap as any).exifBuffer = null
|
|
|
|
}
|