Skip to main content

Invariant GFX

A deterministic, functional graphics pipeline built on Invariant. Invariant GFX allows developers to build complex visual assets (icons, badges, dynamic UI components, Stream Deck buttons, data visualizations) by plugging together reusable "pipeline parts" in a DAG-based system.

Note: This project builds on Invariant, a deterministic execution engine for DAGs. For information about Invariant's core concepts (DAG execution, caching, execution model, parameter markers, etc.), see the upstream README and Invariant documentation.

What is Invariant GFX?

Invariant GFX gives you aggressive caching and deduplication: identical visual operations run once and are reused. Outputs are bit-for-bit reproducible, and layout can be driven by upstream artifact dimensions so the same graph scales across sizes.

High-level features:

  • Smart layout — Ops inspect upstream artifact dimensions to calculate positions dynamically.
  • Anchor-based composition — Position layers with absolute() and relative() builder functions, referencing previously-placed named layers.
  • Content-sized layout — Row/column flow with automatic sizing.
  • Effects as subgraphs — Filter primitives (blur, alpha, morphology) are composed into effect recipes (e.g. drop shadow) via SubGraphNode. See docs/effects.md.
  • Deterministic and cacheable — No floats in cacheable data; all layout uses Decimal or integers.

Relationship to Invariant: Invariant GFX is a child project of Invariant. The parent provides the DAG execution engine, caching, and core protocols (no image awareness). Invariant GFX provides graphics ops (gfx:render_text, gfx:composite, gfx:render_svg, etc.) and artifacts (ImageArtifact, BlobArtifact). It uses Invariant's Executor and store directly—no wrapper.

Get started

Installation

pip install invariant-gfx

To run the bundled examples or any code that hardcodes a font family (such as the Inter snippet below), install the optional font pack — it pulls justmytype-western-core, which registers Inter, Noto Sans, JetBrains Mono, and a few more with JustMyType:

pip install 'invariant-gfx[fonts]'

For development inside this repository:

git clone https://github.com/kws/invariant-gfx
cd invariant-gfx
uv sync --all-groups

The dev group also installs justmytype-western-core, so the test suite and examples find a font without extra setup.

Quick Start

Minimal example: text on a solid background, with proportional font sizing (14pt at 72px reference). The snippet below uses Inter, which ships via the fonts extra; substitute any font installed on your system.

from decimal import Decimal
from invariant import Executor, Node, ref
from invariant.registry import OpRegistry
from invariant.store.memory import MemoryStore

from invariant_gfx import register_core_ops
from invariant_gfx.anchors import relative

registry = OpRegistry()
register_core_ops(registry)
store = MemoryStore()
executor = Executor(registry=registry, store=store)

size = 72
font_size = int(Decimal(str(size)) * Decimal("14") / Decimal("72"))

graph = {
    "text": Node(
        op_name="gfx:render_text",
        params={
            "text": "Hello",
            "font": "Inter",
            "size": font_size,
            "color": (255, 255, 255, 255),
        },
        deps=[],
    ),
    "background": Node(
        op_name="gfx:create_solid",
        params={
            "size": (size, size),
            "color": (40, 40, 40, 255),
        },
        deps=[],
    ),
    "final": Node(
        op_name="gfx:composite",
        params={
            "layers": [
                {"image": ref("background"), "id": "background"},
                {"image": ref("text"), "anchor": relative("background", "c@c"), "id": "text"},
            ],
        },
        deps=["background", "text"],
    ),
}

results = executor.execute(graph, ["final"])
results["final"].image.save("output.png", format="PNG")

Proportional sizing can also be driven by context + CEL when using the template+context pattern; see docs/architecture.md.

Examples

  • examples/quick_start.py — Minimal text-on-background with proportional sizing.
  • examples/thermometer_button.py — Icon + text + layout + composite pipeline.
  • examples/text_badge.py — Dynamic SVG resizing driven by text dimensions.
  • examples/color_dashboard.py — Multi-cell dashboard with nested layouts.
  • examples/text_drop_shadow.py — Text with drop-shadow recipe (effect subgraph).
  • examples/effects_showcase.py — All effect recipes (drop shadow, outer stroke, outer glow, inner shadow, inner glow, reflection) in a grid.
  • examples/shapes_showcase.py — Shapes library (rect, circle, etc.) with render_svg.
  • examples/serialized/square_button_badge.json — Parameterized serialized graph document for a fit-width text badge.

Where to go next: See docs/README.md for the documentation index. For op specs and the template+context pattern, see docs/architecture.md. For reference pipelines, see docs/reference_pipelines.md. For effects and filter primitives, see docs/effects.md.

Reference

Invariant GFX provides graphics ops under the gfx: namespace: sources (resolve_resource, create_solid), transformers (render_svg, render_text, resize), composition (composite, layout), casting (blob_to_image), and effects (extract_alpha, blur, colorize, translate, pad, etc.). See docs/architecture.md and docs/effects.md for the full list and specifications.

Contributing

# Run tests
uv run pytest

# Lint
uv run ruff check src/ tests/

# Format
uv run ruff format src/ tests/

For constraints, terminology, and implementation context, see AGENTS.md.

For execution model and GFX-specific design, see docs/architecture.md.

License

MIT License — see LICENSE for details.

Release files for invariant-gfx 0.4.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for invariant-gfx 0.4.0
File Size Uploaded
invariant_gfx-0.4.0.tar.gz 162.7 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for invariant-gfx 0.4.0
File Interpreter ABI Platform
invariant_gfx-0.4.0-py3-none-any.whl Python 3 none any Details

Total release size: 221.1 kB

Release files / invariant_gfx-0.4.0.tar.gz

Download URL invariant_gfx-0.4.0.tar.gz
Size 162.7 kB
Tags Source
SHA-256 checksum
How to use checksums
0776fc4a2626c08d7af0dd8b85db2075f30c7955e0f8dd45bb357bf2351983bd
BLAKE2b-256 checksum
How to use checksums
00539f6b11ab5a45a155ef407fbed36f503269779b69b2772109877e39be1469
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 6, 2026.

Transparency log

Release files / invariant_gfx-0.4.0-py3-none-any.whl

Download URL invariant_gfx-0.4.0-py3-none-any.whl
Size 58.5 kB
Tags Python 3
SHA-256 checksum
How to use checksums
22e3fb7076cbf3b71ea1e8fced98a5ccef2698cd8e7ebd869dbb52472c809bb4
BLAKE2b-256 checksum
How to use checksums
2eba986680ff987b916827125a42098be68586a746265b328e13fb534bac3bea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 6, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.4.0 This release

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page