An elegant art deco city engraving of the iconic Titanic silhouette

Black-and-white stylized ship with ornate linework and geometric towers, floating above op-art wave contours.

Prompt

2x2 grid, 16:9, do this for 4 famous movies { instructions input: $ subject

create temp view subject_analysis as
select
  trace_outer_contour(:subject)        as main_shape,
  detect_internal_edges(:subject)      as internal_lines,
  find_repeated_features(:subject)     as repeated_units,
  infer_symbolic_meaning(:subject)     as symbols,
  infer_directional_energy(:subject)   as flow;

create temp view glyph_layer as
select
  convert_to_deco_glyphs(
    main_shape,
    glyphs = array[
      'stepped arch',
      'sunburst',
      'tower rib',
      'circular medallion',
      'streamline curve',
      'black slab',
      'white cutout'
    ],
    line_weight = 'bold'
  ) as subject_glyph
from subject_analysis;

create temp view op_field as
select
  generate_wave_topography(
    flow,
    style = 'black-white contour ribbons',
    spacing = 'tight near focal zones, wide in calm zones'
  ) as wave_ground,

  generate_ornamental_fill(
    repeated_units,
    patterns = array['dots','rings','nested arcs','window grids','parallel stripes']
  ) as detail_fill
from subject_analysis;

create temp view architecture_layer as
select
  build_symbolic_city(
    symbols,
    architecture = array[
      'impossible skyscrapers',
      'arched portals',
      'vertical machine facades',
      'stacked geometric districts',
      'abstract towers'
    ],
    placement = 'around and partially inside subject silhouette'
  ) as city_encoding
from subject_analysis;

render
  glyph_layer.subject_glyph,
  op_field.wave_ground under glyph_layer.subject_glyph,
  op_field.detail_fill inside glyph_layer.subject_glyph,
  architecture_layer.city_encoding around_and_within glyph_layer.subject_glyph
with
  palette = 'pure black, pure white, limited silver-gray',
  lighting = 'graphic glow only, no realistic lamps',
  composition = 'square poster, centered icon, dense border architecture',
  style = 'deco-op symbolic city engraving';

-- output rules:
-- 1. $ subject must remain readable as the main silhouette.
-- 2. interior detail becomes glyphs, linework, windows, stripes, rings, and ornamental pattern systems.
-- 3. background becomes an impossible black-and-white city or symbolic civilization.
-- 4. ground and atmosphere become flowing op-art contour fields.
-- 5. use extreme contrast, clean line hierarchy, and elegant visual rhythm.
-- 6. no color, no realism, no soft watercolor, no clay, no photoreal rendering. }
Published: July 17, 2026 by