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.
World's largest square art collection
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.
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
The project asks an LLM for a clear pixel plan: each pixel position, its color, and the instruction behind the visual arrangement.
The square is built from coordinate-based data, so every cell in the grid has an intentional place and color value.
Software compares the image and pixel arrangement against the collection to make sure the square is not a duplicate.
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
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
The source concept and rules used to create the pixel layout.
The exact position and color of every pixel in the square.
A uniqueness check against existing square images and pixel data.
A collection identifier that connects the final image to its structured record.