56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
const sharp = require("sharp");
|
|
const imghash = require("imghash");
|
|
const leven = require("leven");
|
|
import path from "path";
|
|
import { isNull, reject } from "lodash";
|
|
import { logger } from "./logger.utils";
|
|
|
|
export const extractMetadataFromImage = async (
|
|
imageFilePath: string
|
|
): Promise<unknown> => {
|
|
const image = await sharp(imageFilePath)
|
|
.metadata()
|
|
.then((metadata) => {
|
|
return metadata;
|
|
});
|
|
return image;
|
|
};
|
|
|
|
export const resizeImage = async (
|
|
imageFile: string | Buffer,
|
|
outputPath: string,
|
|
newWidth: number,
|
|
newHeight?: number
|
|
): Promise<unknown> => {
|
|
return await sharp(imageFile)
|
|
.resize(newWidth)
|
|
.toFile(`${outputPath}`, (err, info) => {
|
|
if (err) {
|
|
logger.error("Failed to resize image:");
|
|
logger.error(err);
|
|
return err;
|
|
}
|
|
|
|
logger.info("Image file resized with the following parameters:");
|
|
logger.info(info);
|
|
return info;
|
|
});
|
|
};
|
|
|
|
export const calculateLevenshteinDistance = async (
|
|
imagePath1: string,
|
|
imagePath2: string
|
|
): Promise<Record<string, unknown>> => {
|
|
console.log("AGANTUK", imagePath1)
|
|
const hash1 = await imghash.hash(imagePath1);
|
|
const hash2 = await imghash.hash(imagePath2);
|
|
console.log("HASHISH", hash1)
|
|
if (!isNull(hash1) && !isNull(hash2)) {
|
|
return new Promise((resolve, reject) => {
|
|
resolve({ levenshteinDistance: leven(hash1, hash2) });
|
|
});
|
|
} else {
|
|
reject("Can't calculate the Levenshtein distance")
|
|
}
|
|
};
|