← Back

Running Text Gif Generator

GitHub Badge
RunningTextGifGenerator.gif
A Python tool for generating GIF animations with a running line of text. Allows you to combine text, images, and other GIF fragments, setting their order, direction of movement, speed, and color configuration - all packaged in a convenient GIF class
Please star this project on GitHub! ⭐

Example

text.gif

This animation can be generated using this simple code

from gif import GIF
gif = GIF()
gif.add_text_fragment("text")
gif.save("text.gif")

Chrome Dino

dino.gif dino.png

You can also generate animations from images

from gif import GIF
gif = GIF(columns=22, rows=24)
gif.add_image_fragment(
    image_path="dino.png",
    direction="up",
    duration=100,
    speed=24,
)
gif.save(path="dino.gif")
bad_apple.gif

Bad Apple on RunningTextGifGenerator

Try generating right now!

GitHub

← Back