Description
Hey, with the latest updates it appears that we can no longer save gif file types.
I'm getting the following error when I try to perform actions and save a gif image.
{ "errorType": "Error", "errorMessage": "VipsOperation: class \"gifsave_buffer\" not found\n", "trace": [ "Error: VipsOperation: class \"gifsave_buffer\" not found", "" ] }
I'm fairly sure this has occurred with the latest V3.0.0 release. I went back to an old version of the layer in AWS that was created using the 2.0.2release and GIFs are working again but HEIC/HEIF files are broken and don't save due to the version of SharpJS in use, so rolling back isn't an option.
This is our implementation of Sharp at the moment, I've simplified this somewhat however as we have a ton of different calculations in place for different file types and such
// srcFile is the Body buffer from S3 GetObject call
let image = sharp(srcFile, {animated: true});
image = await image.resize({
width: newSize.width,
height: newSize.height,
fit: resizeType,
background: {r: 255, g: 255, b: 255, alpha: 1},
});
processedBuffer = await image.toBuffer();
// processedBuffer is then passed to S3.putObject
Appreciate this may be SharpJS issue rather than an issue with the layer, however given this layer is the one loading in the packages for the different libs, I assumed it may be an issue here rather than Sharp itself.