mirror of
https://github.com/kunkunsh/kunkun-ext-image-processing.git
synced 2025-04-03 18:06:42 +00:00
13 lines
505 B
TypeScript
13 lines
505 B
TypeScript
import sharp from 'sharp';
|
|
import * as v from 'valibot';
|
|
|
|
export function compressToJpeg(inputPath: string, outputPath: string, quality: number) {
|
|
// verify with valibot that quality is between 0 and 100
|
|
const validatedQuality = v.pipe(v.number(), v.minValue(0), v.maxValue(100));
|
|
const parsedQuality = v.safeParse(validatedQuality, quality);
|
|
if (!parsedQuality.success) {
|
|
throw new Error('Invalid quality');
|
|
}
|
|
return sharp(inputPath).jpeg({ quality: parsedQuality.output }).toFile(outputPath);
|
|
}
|