World's largest square art collection

Digital square worlds, built one pixel at a time.

Square Project is an art collection of digital squares. The most popular format is the 8 by 8 pixel square: a tiny grid where every position, color, and instruction becomes part of the artwork.

What This Website Is

This website explains and presents Square Project: a digital art project focused on square compositions, pixel grids, and collectible miniature visual worlds. Each image is created from structured instructions instead of being treated as a random picture.

Creation process

From prompt to verified square

01

Ask for structured data

The project asks an LLM for a clear pixel plan: each pixel position, its color, and the instruction behind the visual arrangement.

02

Map every position

The square is built from coordinate-based data, so every cell in the grid has an intentional place and color value.

03

Check uniqueness

Software compares the image and pixel arrangement against the collection to make sure the square is not a duplicate.

04

Build and identify

After validation, the artwork is rendered from its instructions and assigned an ID so it can be tracked as part of the collection.

Structured pixel data

Each square is more than an image file.

A square can be represented as data: grid size, coordinates, color values, generation notes, uniqueness checks, and a permanent collection ID. That structure makes the artwork reproducible, searchable, and verifiable.

{
  "id": "SQ-08-0001",
  "size": "8x8",
  "pixels": [
    { "x": 0, "y": 0, "color": "#111827" },
    { "x": 1, "y": 0, "color": "#f97316" },
    { "x": 2, "y": 0, "color": "#22c55e" }
  ],
  "verifiedUnique": true
}

Collection identity

Every square gets a record.

Instruction

The source concept and rules used to create the pixel layout.

Arrangement

The exact position and color of every pixel in the square.

Verification

A uniqueness check against existing square images and pixel data.

ID

A collection identifier that connects the final image to its structured record.