Skip to main content

Make gifs in python.

Project description

make-a-gif

A (very) simple package for generating gifs using matplotlib.

Installation

pip install make-a-gif

or just copy across the make_a_gif.py file to your project.

Usage

For a full suite of examples, see the examples directory - note that make-a-gif works well with Jupyter notebooks.

import matplotlib.pyplot as plt
from make_a_gif import gif


# define a function that generates a plot for a given frame
def plotting_func(i: int) -> None:
    xs = range(i + 1)
    ys = [x**2 for x in xs]
    plt.plot(xs, ys, "-o", clip_on=False, zorder=10)
    # make sure the limits are always the same
    plt.xlim(0, 10)
    plt.ylim(0, 100)


# create the gif
gif(plotting_func, frames=range(11), fps=2, save_to="squared.gif")

Documentation

The only object exported by make-a-gif is the gif function.

gif(
    frames: Iterable[Frame],
    function: Callable[[Frame], None | str | Path | Figure],
    save_to: str | Path | None = None,
    fps: float = 10,
    css: dict[str, str] | None = None,
    savefig_kwargs: dict[str, Any] | None = None,
) -> HTML | None:
    ...

Description:

Generate a GIF from a sequence of frames.

Based on the return type of the function, the following happens:

  • None: assume that the currently active matplotlib figure has been contains the desired image. Use this figure for the next frame, and then close the figure.
  • str or Path: assume that this points to an image file. This gets used as the next image in the gif.
  • plt.Figure: use the current content of the matplotlib figure as the next image in the gif. The figure is not closed.

The function is called for each frame, and the return values are used to generate images for the gif in order. In pseudocode:

images = []

for frame in frames:
    ret = function(frame)
    if isinstance(ret, str | Path):
        images.append(Image.open(ret))
    elif isinstance(ret, Figure):
        images.append(ret.savefig())
    elif ret is None:
        images.append(plt.savefig())

return gif(images)

Parameters:

  • frames is an iterable of arbitrary objects. These are passed in order, and one-by-one to the function.
  • function takes an arbitrary frame object as input, and generates a single image for the gif. There are several behaviours here, depending on the return type of function:
    • None: assume that a matplotlib plot has been generated. This is then used as the next image in the gif. The figure is closed automatically after each frame.
    • plt.Figure: uses the current content of the figure as the next image in the gif. The figure is not closed.
    • str or Path: assume that this points to an image file. This gets used as the next image in the gif.
  • save_to is the path to save the gif to. If not provided, the gif is not saved.
  • fps is the frames per second of the gif, by default 10
  • css is the CSS to apply to the HTML returned by the function.
  • savefig_kwargs are the keyword arguments to pass to plt.savefig when saving the figure to a file. The default is {"bbox_inches": "tight", "transparent": True}.
  • loop is the loop mode of the gif:
    • "infinite": loop the gif indefinitely
    • "once": play the gif once
    • "bounce": play the gif forwards and then backwards indefinitely

Returns:

gif returns an IPython.display.HTML object. This contains a base64 encoded version of the gif, and so is independent of the file system - you can e.g. share notebooks that display this object as a standalone file and the gif will still work.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

make_a_gif-0.2.0.tar.gz (5.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

make_a_gif-0.2.0-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file make_a_gif-0.2.0.tar.gz.

File metadata

  • Download URL: make_a_gif-0.2.0.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.24

File hashes

Hashes for make_a_gif-0.2.0.tar.gz
Algorithm Hash digest
SHA256 deefd23ee979ea5b6d95e45a92caf84ae9bf7358cc3e02dd345852062ba2c541
MD5 9afaa777107fba6dfadd625cb38f7f08
BLAKE2b-256 2545e74f26dd0bde5b25a4e7cf9cf44bf354842a431bc3d1d898bd0d4d4bbeda

See more details on using hashes here.

File details

Details for the file make_a_gif-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: make_a_gif-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 6.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.5.24

File hashes

Hashes for make_a_gif-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 23348fd729933e9ba86b46aab9ec6abbd0abe150f4ab5ca3de71a9ad89b34723
MD5 703d562d95ecbc58608e2b3f397c11b7
BLAKE2b-256 5f350d3ef734756fdd021a3875c6626d16d94f427546ccd2c26e5675befc8e53

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page