Skip to main content

A deterministic, functional graphics pipeline built on Invariant. Build icons, badges, dynamic UI components, and data visualizations by composing reusable pipeline parts in a DAG-based system.

Project description

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

# Clone the repository
git clone https://github.com/kws/invariant-gfx
cd invariant-gfx

# Install dependencies
uv sync

This project depends on a local development version of Invariant; the dependency is configured in pyproject.toml as a file path reference.

Quick Start

Minimal example: text on a solid background, with proportional font sizing (14pt at 72px reference). Run with uv run python -c "..." or adapt from examples/quick_start.py.

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": "Geneva",
            "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)
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.

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.

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

invariant_gfx-0.2.0.tar.gz (155.5 kB view details)

Uploaded Source

Built Distribution

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

invariant_gfx-0.2.0-py3-none-any.whl (56.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: invariant_gfx-0.2.0.tar.gz
  • Upload date:
  • Size: 155.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for invariant_gfx-0.2.0.tar.gz
Algorithm Hash digest
SHA256 f147e5b43cb789ef3460b53fc162bd6f02bca8f60d5842439d2ff79e5c890a6e
MD5 5099c04c9462104fff9e23f7205a1d6c
BLAKE2b-256 943b47e282a42935abfda23a6bf36a1a48f3e44976b83706d8d2160714aac31f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: invariant_gfx-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 56.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for invariant_gfx-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 be7495a1d8791c9b702d615a92fc26966cff5eabcc24e145a0fc1f52aff42a9d
MD5 e18bb869917978aa2cd57a85d39ee28d
BLAKE2b-256 d6d0372a05c1836e359061426a54a6eb509d713d2ded9cb337809071f26f3698

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