mirror of
https://github.com/kunkunsh/kunkun-ext-image-processing.git
synced 2025-04-03 18:06:42 +00:00
16 lines
521 B
TypeScript
16 lines
521 B
TypeScript
import sharp from 'sharp';
|
|
|
|
/**
|
|
* Convert image to another format
|
|
* This is a direct conversion, expecting sharp to figure out the conversion based on output file extension
|
|
* Both paths should be absolute paths
|
|
* @param inputPath - The path to the input file
|
|
* @param outputPath - The path to the output file
|
|
*/
|
|
export function convert(inputPath: string, outputPath: string) {
|
|
if (!Deno.statSync(inputPath).isFile) {
|
|
throw new Error('Input path is not a file');
|
|
}
|
|
return sharp(inputPath).toFile(outputPath);
|
|
}
|