stumpy_gif alternatives and similar shards
Based on the "Misc" category.
Alternatively, view stumpy_gif alternatives based on common mentions on social networks and blogs.
-
sentry
Build/Runs your crystal application, watches files, and rebuilds/restarts app on file changes -
burocracia.cr
๐ Zero-dependency Crystal shard to validate, generate and format Brazilian burocracias (CPF, CNPJ, CEP) -
wikicr
Wiki in crystal, using Markdown and Git, inspired by dokuwiki. Last features to build are pretty hard, if you have some time to help... :) -
defined
This shard provides facilities for checking whether a constant exists at compile time, and for a variety of different conditional compilation options. Code can be conditionally compiled based on the existence of a constant, version number constraints, or whether an environment variable is set truthy or not.
InfluxDB โ Built for High-Performance Time Series Workloads

Do you think we are missing an alternative of stumpy_gif or a related project?
README
stumpy_gif
Interface
StumpyGIF.write(frames : Array(Canvas), path_or_io, delay_between_frames = 10)
saves a list of frames (canvasses) as a GIF image file,delay_between_frames
is in 1/100 of a secondCanvas
andRGBA
from stumpy_core
Usage
Writing
require "stumpy_gif"
include StumpyGIF
frames = [] of Canvas
(0..5).each do |z|
canvas = Canvas.new(256, 256)
(0..255).each do |x|
(0..255).each do |y|
color = RGBA.from_rgb_n([x, y, z * 51], 8)
canvas[x, y] = color
end
end
frames << canvas
end
StumpyGIF.write(frames, "rainbow.gif")
Left to right: Websafe, median split, NeuQuant
[GIF image with an animated color gradient](examples/rainbow_websafe.gif) [GIF image with an animated color gradient](examples/rainbow_median_split.gif) [GIF image with an animated color gradient](examples/rainbow_neuquant.gif)
(See examples/
for more examples)
Color Quantization Methods
- Use Websafe colors
- Median Split
- NeuQuant
References
Contributors
Thanks goes to these wonderful people (emoji key):
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore --> | Leon | Sam | Stepan Melnikov๐ป | Dmitry Bochkarev๐ป | | :---: | :---: | :---: | :---: | <!-- ALL-CONTRIBUTORS-LIST:END -->
This project follows the all-contributors specification. Contributions of any kind welcome!