We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
would be good to be able to read and write frame delay, as Omggif supports it
Omggif
The text was updated successfully, but these errors were encountered:
nevermind, turns out it's in GifFrame and was losing the GifFrameOptions here in my code
GifFrame
GifFrameOptions
frames = image.frames.map(frame => new GifFrame( (GifUtil.copyAsJimp(Jimp, frame) as Jimp).scaleToFit(maxSize, maxSize).bitmap, frame ) )
because of this check in its constructor:
is that meant to be there? there's no constructor type that would imply such behavior:
constructor(bitmap: JimpBitmap, options?: GifFrameOptions); constructor(bitmapImage: BitmapImage, options?: GifFrameOptions); constructor(width: number, height: number, buffer: Buffer, options?: GifFrameOptions); constructor(width: number, height: number, backgroundRGBA?: number, options?: GifFrameOptions); constructor(frame: GifFrame);
Sorry, something went wrong.
No branches or pull requests
would be good to be able to read and write frame delay, as
Omggif
supports itThe text was updated successfully, but these errors were encountered: