2023-07-31 14:34:36 +02:00
|
|
|
import { copy, remove } from 'fs-extra/esm'
|
|
|
|
import { readFile, rename } from 'fs/promises'
|
2023-05-22 17:04:39 +02:00
|
|
|
import { ColorActionName } from '@jimp/plugin-color'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { buildUUID, getLowercaseExtension } from '@peertube/peertube-node-utils'
|
2023-10-19 14:18:22 +02:00
|
|
|
import { convertWebPToJPG, processGIF } from './ffmpeg/index.js'
|
|
|
|
import { logger } from './logger.js'
|
2023-07-31 14:34:36 +02:00
|
|
|
|
|
|
|
import type Jimp from 'jimp'
|
2022-02-11 10:51:33 +01:00
|
|
|
|
2023-10-19 14:18:22 +02:00
|
|
|
export function generateImageFilename (extension = '.jpg') {
|
2021-06-28 17:30:59 +02:00
|
|
|
return buildUUID() + extension
|
2021-04-08 11:23:45 +02:00
|
|
|
}
|
|
|
|
|
2023-10-19 14:18:22 +02:00
|
|
|
export async function processImage (options: {
|
2022-06-27 11:53:12 +02:00
|
|
|
path: string
|
|
|
|
destination: string
|
|
|
|
newSize: { width: number, height: number }
|
|
|
|
keepOriginal?: boolean // default false
|
|
|
|
}) {
|
|
|
|
const { path, destination, newSize, keepOriginal = false } = options
|
|
|
|
|
2021-06-08 09:33:03 +02:00
|
|
|
const extension = getLowercaseExtension(path)
|
2020-11-25 09:26:31 +01:00
|
|
|
|
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)
|
|
|
|
|
2020-11-25 09:26:31 +01:00
|
|
|
// Use FFmpeg to process GIF
|
|
|
|
if (extension === '.gif') {
|
2023-04-21 14:55:10 +02:00
|
|
|
await processGIF({ path, destination, newSize })
|
2020-11-25 09:50:12 +01:00
|
|
|
} else {
|
2024-02-26 14:33:22 +01:00
|
|
|
await jimpProcessor({ path, destination, newSize, inputExt: extension })
|
2020-11-25 09:26:31 +01:00
|
|
|
}
|
|
|
|
|
2020-11-25 09:50:12 +01:00
|
|
|
if (keepOriginal !== true) await remove(path)
|
2023-07-19 16:02:49 +02:00
|
|
|
|
2023-10-19 14:18:22 +02:00
|
|
|
logger.debug('Finished processing image %s to %s.', path, destination)
|
2022-02-11 10:51:33 +01:00
|
|
|
}
|
|
|
|
|
2023-10-19 14:18:22 +02:00
|
|
|
export async function getImageSize (path: string) {
|
2022-03-01 08:50:28 +01:00
|
|
|
const inputBuffer = await readFile(path)
|
|
|
|
|
2023-07-31 14:34:36 +02:00
|
|
|
const Jimp = await import('jimp')
|
|
|
|
|
|
|
|
const image = await Jimp.default.read(inputBuffer)
|
2022-03-01 08:50:28 +01:00
|
|
|
|
|
|
|
return {
|
|
|
|
width: image.getWidth(),
|
|
|
|
height: image.getHeight()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 09:50:12 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2023-10-19 14:18:22 +02:00
|
|
|
// Private
|
2020-11-25 09:50:12 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2024-02-26 14:33:22 +01:00
|
|
|
async function jimpProcessor (options: {
|
|
|
|
path: string
|
|
|
|
destination: string
|
|
|
|
newSize: {
|
|
|
|
width: number
|
|
|
|
height: number
|
|
|
|
}
|
|
|
|
inputExt: string
|
|
|
|
}) {
|
|
|
|
const { path, destination, newSize, inputExt } = options
|
|
|
|
|
2021-11-16 15:59:56 +01:00
|
|
|
let sourceImage: Jimp
|
2021-02-16 10:19:09 +01:00
|
|
|
const inputBuffer = await readFile(path)
|
2020-07-10 14:54:11 +02:00
|
|
|
|
2023-07-31 14:34:36 +02:00
|
|
|
const Jimp = await import('jimp')
|
|
|
|
|
2020-07-10 14:54:11 +02:00
|
|
|
try {
|
2023-07-31 14:34:36 +02:00
|
|
|
sourceImage = await Jimp.default.read(inputBuffer)
|
2020-07-10 14:54:11 +02:00
|
|
|
} 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'
|
2023-04-21 14:55:10 +02:00
|
|
|
await convertWebPToJPG({ path, destination: newName })
|
2020-07-10 14:54:11 +02:00
|
|
|
await rename(newName, path)
|
|
|
|
|
2023-07-31 14:34:36 +02:00
|
|
|
sourceImage = await Jimp.default.read(path)
|
2020-07-10 14:54:11 +02:00
|
|
|
}
|
2018-11-19 11:24:31 +01:00
|
|
|
|
|
|
|
await remove(destination)
|
|
|
|
|
2021-02-16 10:19:09 +01:00
|
|
|
// Optimization if the source file has the appropriate size
|
2021-06-08 09:33:03 +02:00
|
|
|
const outputExt = getLowercaseExtension(destination)
|
2021-11-16 15:59:56 +01:00
|
|
|
if (skipProcessing({ sourceImage, newSize, imageBytes: inputBuffer.byteLength, inputExt, outputExt })) {
|
2021-02-16 10:19:09 +01:00
|
|
|
return copy(path, destination)
|
|
|
|
}
|
|
|
|
|
2021-11-16 15:59:56 +01: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 15:45:06 +02:00
|
|
|
// Portrait mode targeting a landscape, apply some effect on the image
|
2024-01-11 11:13:20 +01:00
|
|
|
const sourceIsPortrait = sourceImage.getWidth() <= sourceImage.getHeight()
|
2021-11-16 16:11:10 +01:00
|
|
|
const destIsPortraitOrSquare = newSize.width <= newSize.height
|
|
|
|
|
2022-03-07 17:16:54 +01:00
|
|
|
removeExif(sourceImage)
|
|
|
|
|
2021-11-16 16:11:10 +01:00
|
|
|
if (sourceIsPortrait && !destIsPortraitOrSquare) {
|
2021-11-16 15:59:56 +01:00
|
|
|
const baseImage = sourceImage.cloneQuiet().cover(newSize.width, newSize.height)
|
2023-05-22 17:04:39 +02:00
|
|
|
.color([ { apply: ColorActionName.SHADE, params: [ 50 ] } ])
|
2021-11-16 15:59:56 +01:00
|
|
|
|
|
|
|
const topImage = sourceImage.cloneQuiet().contain(newSize.width, newSize.height)
|
|
|
|
|
|
|
|
return write(baseImage.blit(topImage, 0, 0), destination)
|
|
|
|
}
|
|
|
|
|
2021-11-16 16:11:10 +01:00
|
|
|
return write(sourceImage.cover(newSize.width, newSize.height), destination)
|
2021-11-16 15:59:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function write (image: Jimp, destination: string) {
|
|
|
|
return image.quality(80).writeAsync(destination)
|
2018-02-13 18:17:05 +01:00
|
|
|
}
|
2021-02-16 10:19:09 +01:00
|
|
|
|
|
|
|
function skipProcessing (options: {
|
2021-11-16 15:59:56 +01:00
|
|
|
sourceImage: Jimp
|
2021-02-16 10:19:09 +01:00
|
|
|
newSize: { width: number, height: number }
|
|
|
|
imageBytes: number
|
|
|
|
inputExt: string
|
|
|
|
outputExt: string
|
|
|
|
}) {
|
2021-11-16 15:59:56 +01:00
|
|
|
const { sourceImage, newSize, imageBytes, inputExt, outputExt } = options
|
2021-02-16 10:19:09 +01:00
|
|
|
const { width, height } = newSize
|
|
|
|
|
2022-03-07 17:16:54 +01:00
|
|
|
if (hasExif(sourceImage)) return false
|
2024-02-26 14:33:22 +01:00
|
|
|
if (sourceImage.getWidth() !== width || sourceImage.getHeight() !== height) return false
|
2021-02-16 10:19:09 +01: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 17:16:54 +01:00
|
|
|
|
|
|
|
function hasExif (image: Jimp) {
|
|
|
|
return !!(image.bitmap as any).exifBuffer
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeExif (image: Jimp) {
|
|
|
|
(image.bitmap as any).exifBuffer = null
|
|
|
|
}
|