gifwrap icon indicating copy to clipboard operation
gifwrap copied to clipboard

A Jimp-compatible library for working with GIFs

Results 21 gifwrap issues
Sort by recently updated
recently updated
newest added

I am using the following function to try and create a thumbnail of a gif with a mask. icon.data is a buffer containing the gif data. The addMask function works...

Error: Frame 0 uses more than 256 color indexes ```javascript async function fixColors(filepath){ return new Promise((resolve)=>{ Jimp.read(filepath, function (err, test) { //what can i do here to fix the error?...

Hi, occasionally I'm getting this error, i think it had to do with `GifUtil` ``` GifError: Invalid block size at new GifReader (/var/www/gifier/node_modules/omggif/omggif.js:489:41) at GifCodec.decodeGif (/var/www/gifier/node_modules/gifwrap/src/gifcodec.js:55:26) at /var/www/gifier/node_modules/gifwrap/src/gifutil.js:222:24 ``` #...

Im trying to create gifs into jimp images then back into gifs. It works fine on some gifs but on some i get this weird bug: https://imgur.com/a/IlRYSLG This is how...

Have you got an example of how to add a png file for each frame? Merging a png with a gif file on background?

Input [https://cdn.discordapp.com/attachments/875525041989750815/898710282631794708/1.gif](url) Output [https://cdn.discordapp.com/attachments/875525041989750815/898710297655779348/2.gif](url) ` const GifCopied = new GifFrame( new BitmapImage(jimpCopied.bitmap, { disposalMethod: frame.disposalMethod, delayCentisecs: frame.delayCentisecs, }) ); const codec = new GifCodec(); await codec.encodeGif(frames, { loops: 0 }).then((encodedGIF)...

Hi everyone, I am no longer using this package and haven't been able to find the time to maintain it. Would anyone like to take over responsibility for doing so?...

Getting the above error trying to load and save a gif ``` return GifUtil.read(downloadedFile) .then(inputGif => // Pass inputGif to write() to preserve the original GIF's specs. GifUtil.write(outputFileName, inputGif.frames, inputGif))...

bug

would be good to be able to read and write frame delay, as `Omggif` supports it

Using this gif with the code below https://media1.giphy.com/media/HnKSuvC39SdOM/source.gif I am getting this error on GifUtil.write(): > RangeError [ERR_OUT_OF_RANGE]: The value of "offset" is out of range. It must be >=...