2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import sharp from 'sharp';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { Config } from '@/config.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
export type IImage = {
|
|
|
|
data: Buffer;
|
|
|
|
ext: string | null;
|
|
|
|
type: string;
|
|
|
|
};
|
2022-12-30 05:00:50 +02:00
|
|
|
|
2023-01-26 09:06:29 +02:00
|
|
|
export type IImageStream = {
|
|
|
|
data: Readable;
|
|
|
|
ext: string | null;
|
|
|
|
type: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export type IImageStreamable = IImage | IImageStream;
|
|
|
|
|
2022-12-30 05:00:50 +02:00
|
|
|
export const webpDefault: sharp.WebpOptions = {
|
|
|
|
quality: 85,
|
|
|
|
alphaQuality: 95,
|
|
|
|
lossless: false,
|
|
|
|
nearLossless: false,
|
|
|
|
smartSubsample: true,
|
|
|
|
mixed: true,
|
|
|
|
};
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2023-01-26 09:06:29 +02:00
|
|
|
import { Readable } from 'node:stream';
|
2022-09-17 21:27:08 +03:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ImageProcessingService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
) {
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert to JPEG
|
|
|
|
* with resize, remove metadata, resolve orientation, stop animation
|
|
|
|
*/
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2022-09-17 21:27:08 +03:00
|
|
|
public async convertToJpeg(path: string, width: number, height: number): Promise<IImage> {
|
|
|
|
return this.convertSharpToJpeg(await sharp(path), width, height);
|
|
|
|
}
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2022-09-17 21:27:08 +03:00
|
|
|
public async convertSharpToJpeg(sharp: sharp.Sharp, width: number, height: number): Promise<IImage> {
|
|
|
|
const data = await sharp
|
|
|
|
.resize(width, height, {
|
|
|
|
fit: 'inside',
|
|
|
|
withoutEnlargement: true,
|
|
|
|
})
|
|
|
|
.rotate()
|
|
|
|
.jpeg({
|
|
|
|
quality: 85,
|
|
|
|
progressive: true,
|
|
|
|
})
|
|
|
|
.toBuffer();
|
|
|
|
|
|
|
|
return {
|
|
|
|
data,
|
|
|
|
ext: 'jpg',
|
|
|
|
type: 'image/jpeg',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert to WebP
|
|
|
|
* with resize, remove metadata, resolve orientation, stop animation
|
|
|
|
*/
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2022-12-30 05:00:50 +02:00
|
|
|
public async convertToWebp(path: string, width: number, height: number, options: sharp.WebpOptions = webpDefault): Promise<IImage> {
|
2023-01-26 09:06:29 +02:00
|
|
|
return this.convertSharpToWebp(sharp(path), width, height, options);
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2022-12-30 05:00:50 +02:00
|
|
|
public async convertSharpToWebp(sharp: sharp.Sharp, width: number, height: number, options: sharp.WebpOptions = webpDefault): Promise<IImage> {
|
2022-09-17 21:27:08 +03:00
|
|
|
const data = await sharp
|
|
|
|
.resize(width, height, {
|
|
|
|
fit: 'inside',
|
|
|
|
withoutEnlargement: true,
|
|
|
|
})
|
|
|
|
.rotate()
|
2022-12-30 05:00:50 +02:00
|
|
|
.webp(options)
|
2022-09-17 21:27:08 +03:00
|
|
|
.toBuffer();
|
|
|
|
|
|
|
|
return {
|
|
|
|
data,
|
|
|
|
ext: 'webp',
|
|
|
|
type: 'image/webp',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-01-26 09:06:29 +02:00
|
|
|
@bindThis
|
|
|
|
public convertToWebpStream(path: string, width: number, height: number, options: sharp.WebpOptions = webpDefault): IImageStream {
|
|
|
|
return this.convertSharpToWebpStream(sharp(path), width, height, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
@bindThis
|
|
|
|
public convertSharpToWebpStream(sharp: sharp.Sharp, width: number, height: number, options: sharp.WebpOptions = webpDefault): IImageStream {
|
|
|
|
const data = sharp
|
|
|
|
.resize(width, height, {
|
|
|
|
fit: 'inside',
|
|
|
|
withoutEnlargement: true,
|
|
|
|
})
|
|
|
|
.rotate()
|
|
|
|
.webp(options)
|
|
|
|
|
|
|
|
return {
|
|
|
|
data,
|
|
|
|
ext: 'webp',
|
|
|
|
type: 'image/webp',
|
|
|
|
};
|
|
|
|
}
|
2022-09-17 21:27:08 +03:00
|
|
|
/**
|
|
|
|
* Convert to PNG
|
|
|
|
* with resize, remove metadata, resolve orientation, stop animation
|
|
|
|
*/
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2022-09-17 21:27:08 +03:00
|
|
|
public async convertToPng(path: string, width: number, height: number): Promise<IImage> {
|
|
|
|
return this.convertSharpToPng(await sharp(path), width, height);
|
|
|
|
}
|
|
|
|
|
2022-12-04 08:03:09 +02:00
|
|
|
@bindThis
|
2022-09-17 21:27:08 +03:00
|
|
|
public async convertSharpToPng(sharp: sharp.Sharp, width: number, height: number): Promise<IImage> {
|
|
|
|
const data = await sharp
|
|
|
|
.resize(width, height, {
|
|
|
|
fit: 'inside',
|
|
|
|
withoutEnlargement: true,
|
|
|
|
})
|
|
|
|
.rotate()
|
|
|
|
.png()
|
|
|
|
.toBuffer();
|
|
|
|
|
|
|
|
return {
|
|
|
|
data,
|
|
|
|
ext: 'png',
|
|
|
|
type: 'image/png',
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|