Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
c3f840e1be | |||
6840d94517 | |||
4600cde549 | |||
33e8ba5f30 |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@push.rocks/smartjimp",
|
||||
"version": "1.0.15",
|
||||
"version": "1.0.17",
|
||||
"private": false,
|
||||
"description": "a tool fr working with images in TypeScript",
|
||||
"main": "dist_ts/index.js",
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@push.rocks/smartjimp',
|
||||
version: '1.0.15',
|
||||
version: '1.0.17',
|
||||
description: 'a tool fr working with images in TypeScript'
|
||||
}
|
||||
|
@ -5,6 +5,7 @@ export interface IAssetVariation {
|
||||
format?: 'avif' | 'webp' | 'png';
|
||||
width?: number;
|
||||
height?: number;
|
||||
invert?: boolean;
|
||||
}
|
||||
|
||||
export interface ISmartJimpOptions {
|
||||
@ -65,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();
|
||||
@ -80,6 +84,9 @@ export class SmartJimp {
|
||||
if (assetVariationArg.width || assetVariationArg.height) {
|
||||
jimpImage = jimpImage.resize(assetVariationArg.width, assetVariationArg.height);
|
||||
}
|
||||
if (assetVariationArg.invert) {
|
||||
jimpImage = jimpImage.invert();
|
||||
}
|
||||
switch (assetVariationArg.format) {
|
||||
case 'png':
|
||||
return await jimpImage.getBufferAsync(jimp.MIME_PNG);
|
||||
|
Reference in New Issue
Block a user