fix(core): update

This commit is contained in:
Philipp Kunz 2023-12-03 23:32:47 +01:00
parent 4600cde549
commit 6840d94517
2 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartjimp',
version: '1.0.16',
version: '1.0.17',
description: 'a tool fr working with images in TypeScript'
}

View File

@ -66,6 +66,9 @@ export class SmartJimp {
let sharpImage = sharp(assetBufferArg);
sharpImage = sharpImage.resize(assetVariationArg.width, assetVariationArg.height);
const resultResize = sharpImage.resize(assetVariationArg.width, assetVariationArg.height);
if (assetVariationArg.invert) {
// TODO: implement invert
}
switch (assetVariationArg.format) {
case 'avif':
sharpImage = resultResize.avif();