2022-02-27 03:07:39 +01:00
|
|
|
import sharp from 'sharp';
|
2019-02-04 19:01:36 +01:00
|
|
|
|
|
|
|
export type IImage = {
|
|
|
|
data: Buffer;
|
2019-04-12 18:43:22 +02:00
|
|
|
ext: string | null;
|
2019-02-04 19:01:36 +01:00
|
|
|
type: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert to JPEG
|
|
|
|
* with resize, remove metadata, resolve orientation, stop animation
|
|
|
|
*/
|
2019-05-15 14:27:20 +02:00
|
|
|
export async function convertToJpeg(path: string, width: number, height: number): Promise<IImage> {
|
2020-02-14 03:40:45 +01:00
|
|
|
return convertSharpToJpeg(await sharp(path), width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function convertSharpToJpeg(sharp: sharp.Sharp, width: number, height: number): Promise<IImage> {
|
|
|
|
const data = await sharp
|
2019-02-04 19:01:36 +01:00
|
|
|
.resize(width, height, {
|
|
|
|
fit: 'inside',
|
2021-12-09 15:58:30 +01:00
|
|
|
withoutEnlargement: true,
|
2019-02-04 19:01:36 +01:00
|
|
|
})
|
|
|
|
.rotate()
|
|
|
|
.jpeg({
|
|
|
|
quality: 85,
|
2021-12-09 15:58:30 +01:00
|
|
|
progressive: true,
|
2019-02-04 19:01:36 +01:00
|
|
|
})
|
|
|
|
.toBuffer();
|
|
|
|
|
|
|
|
return {
|
|
|
|
data,
|
|
|
|
ext: 'jpg',
|
2021-12-09 15:58:30 +01:00
|
|
|
type: 'image/jpeg',
|
2019-02-04 19:01:36 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert to WebP
|
|
|
|
* with resize, remove metadata, resolve orientation, stop animation
|
|
|
|
*/
|
2019-05-15 14:27:20 +02:00
|
|
|
export async function convertToWebp(path: string, width: number, height: number): Promise<IImage> {
|
2020-02-14 03:40:45 +01:00
|
|
|
return convertSharpToWebp(await sharp(path), width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function convertSharpToWebp(sharp: sharp.Sharp, width: number, height: number): Promise<IImage> {
|
|
|
|
const data = await sharp
|
2019-02-04 19:01:36 +01:00
|
|
|
.resize(width, height, {
|
|
|
|
fit: 'inside',
|
2021-12-09 15:58:30 +01:00
|
|
|
withoutEnlargement: true,
|
2019-02-04 19:01:36 +01:00
|
|
|
})
|
|
|
|
.rotate()
|
|
|
|
.webp({
|
2021-12-09 15:58:30 +01:00
|
|
|
quality: 85,
|
2019-02-04 19:01:36 +01:00
|
|
|
})
|
|
|
|
.toBuffer();
|
|
|
|
|
|
|
|
return {
|
|
|
|
data,
|
|
|
|
ext: 'webp',
|
2021-12-09 15:58:30 +01:00
|
|
|
type: 'image/webp',
|
2019-02-04 19:01:36 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert to PNG
|
|
|
|
* with resize, remove metadata, resolve orientation, stop animation
|
|
|
|
*/
|
2019-05-15 14:27:20 +02:00
|
|
|
export async function convertToPng(path: string, width: number, height: number): Promise<IImage> {
|
2020-02-14 03:40:45 +01:00
|
|
|
return convertSharpToPng(await sharp(path), width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function convertSharpToPng(sharp: sharp.Sharp, width: number, height: number): Promise<IImage> {
|
|
|
|
const data = await sharp
|
2019-02-04 19:01:36 +01:00
|
|
|
.resize(width, height, {
|
|
|
|
fit: 'inside',
|
2021-12-09 15:58:30 +01:00
|
|
|
withoutEnlargement: true,
|
2019-02-04 19:01:36 +01:00
|
|
|
})
|
|
|
|
.rotate()
|
|
|
|
.png()
|
|
|
|
.toBuffer();
|
|
|
|
|
|
|
|
return {
|
|
|
|
data,
|
|
|
|
ext: 'png',
|
2021-12-09 15:58:30 +01:00
|
|
|
type: 'image/png',
|
2019-02-04 19:01:36 +01:00
|
|
|
};
|
|
|
|
}
|
2020-02-14 03:40:45 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert to PNG or JPEG
|
|
|
|
* with resize, remove metadata, resolve orientation, stop animation
|
|
|
|
*/
|
|
|
|
export async function convertToPngOrJpeg(path: string, width: number, height: number): Promise<IImage> {
|
|
|
|
return convertSharpToPngOrJpeg(await sharp(path), width, height);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function convertSharpToPngOrJpeg(sharp: sharp.Sharp, width: number, height: number): Promise<IImage> {
|
|
|
|
const stats = await sharp.stats();
|
|
|
|
const metadata = await sharp.metadata();
|
|
|
|
|
|
|
|
// 不透明で300x300pxの範囲を超えていればJPEG
|
|
|
|
if (stats.isOpaque && ((metadata.width && metadata.width >= 300) || (metadata.height && metadata!.height >= 300))) {
|
|
|
|
return await convertSharpToJpeg(sharp, width, height);
|
|
|
|
} else {
|
|
|
|
return await convertSharpToPng(sharp, width, height);
|
|
|
|
}
|
|
|
|
}
|