Image ChatGPT Image 2
A detailed diorama poster of a fantasy world with sharp focus and warm light
A miniature diorama poster featuring a fantasy world with intricate details, sharp focus, and warm lighting, with readable place markers and a type stack below.
Prompt
WITH
input(anime) AS ( VALUES (:ANIME) ),
world AS ( SELECT CASE WHEN fictional_map(anime) THEN canonical_continent(anime)
ELSE primary_geography(anime) END AS boundary, -- the branch (A₁)
locations(anime) AS locs, identity(anime) AS ident,
cast(anime) AS cast, meta(anime) AS meta FROM input ),
slab AS ( SELECT extrude(boundary, 'rock', 'rough_cliff') AS base FROM world ),
top AS ( SELECT embed(locs, canonical_xy) AS surface FROM world ) -- A₂ canonical placement
SELECT poster( float_centered(base ⊕ surface ⊕ micro(cast) ⊕ readable_markers(locs),
lower_two_thirds, margins, never_touch_edges),
soft_warm_top ⊕ diffuse_shadows ⊕ drop_shadow('off_white'),
focus=>'everything_sharp', blur=>0,
type_stack=>(caps(world_name), dominant_condensed(anime,'charcoal'), caps(studio_year)) ) AS diorama_poster
FROM slab, top, world
-- A₁: CHECK ( footprint = canonical boundary )
-- A₂: CHECK ( placement fidelity ≥ :tau AND identity faithful AND NOT western_generic )
-- A₃: CHECK ( markers readable AND micro dense AND iconic present )
-- A₄: CHECK ( blur=0 AND sharp_everywhere AND miniature_read )
-- A₅: CHECK ( lower_two_thirds AND NOT touches_edges AND hierarchy correct )
-- forbidden rows (blur / generic shape / misplaced / western / touching edges / wrong stack) violate CHECKs
;
Published: August 25, 2026 by Gadgetify