Back

SVG Drawing Match #433

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal cityscape on a giant turtle's shell"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="turtleShell" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color: #8ad6cc; stop-opacity: 1;" />
      <stop offset="100%" style="stop-color: #05889a; stop-opacity: 1;" />
    </radialGradient>
    <linearGradient id="cityGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color: #ffdd67; stop-opacity: 1;" />
      <stop offset="100%" style="stop-color: #ff5733; stop-opacity: 1;" />
    </linearGradient>
    <pattern id="buildingPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="#fff" />
      <rect x="2" y="2" width="6" height="6" fill="url(#cityGradient)" />
    </pattern>
  </defs>
  <circle cx="150" cy="220" r="80" fill="url(#turtleShell)" />
  <g transform="translate(100, 140)">
    <path d="M0,0 L40,0 L30,-35 L10,-35 Z" fill="url(#cityGradient)" stroke="#333" stroke-width="2"/>
    <path d="M50,-10 L90,-10 L85,-50 L55,-50 Z" fill="url(#cityGradient)" stroke="#333" stroke-width="2"/>
    <path d="M100,-20 L140,-20 L130,-60 L110,-60 Z" fill="url(#cityGradient)" stroke="#333" stroke-width="2"/>
  </g>
  <g transform="translate(60, 200)">
    <rect x="0" y="0" width="60" height="100" fill="url(#buildingPattern)" stroke="#333" stroke-width="2"/>
    <rect x="70" y="0" width="50" height="80" fill="url(#buildingPattern)" stroke="#333" stroke-width="2"/>
    <rect x="130" y="0" width="40" height="60" fill="url(#buildingPattern)" stroke="#333" stroke-width="2"/>
  </g>
  <ellipse cx="150" cy="240" rx="30" ry="20" fill="#4e342e" />
  <path d="M230,250 Q240,230 250,250 T270,250" fill="#4e342e" />
  <path d="M30,250 Q40,270 50,250 T70,250" fill="#4e342e" />
  <ellipse cx="95" cy="260" rx="18" ry="12" fill="#3e2723" />
  <ellipse cx="205" cy="260" rx="18" ry="12" fill="#3e2723" />
</svg>
SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="turtleShellGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color: #28527a; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #002b5b; stop-opacity:1" />
    </linearGradient>
    <linearGradient id="cityGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color: #ff6b6b; stop-opacity:1" />
      <stop offset="100%" style="stop-color: #ffaf5f; stop-opacity:1" />
    </linearGradient>
  </defs>
  <path d="M150 250 Q100 200 150 150 Q200 200 150 250" fill="url(#turtleShellGradient)" />
  <g transform="translate(150, 175)">
    <path d="M-50 0 h100 v-50 h-100 z" fill="#b2dfdb" />
    <path d="M-40 0 h80 v-30 h-80 z" fill="#e65100" />
    <path d="M-30 0 h60 v-10 h-60 z" fill="#ffeb3b" />
    <path d="M-20 0 h40 v-15 h-40 z" fill="#2196f3" />
    <path d="M-10 0 h20 v-20 h-20 z" fill="#4caf50" />
  </g>
  <g transform="translate(150, 125)">
    <path d="M-30 0 h60 v-30 h-60 z" fill="#e91e63" />
    <path d="M-20 0 h40 v-10 h-40 z" fill="#f44336" />
    <path d="M-10 0 h20 v-15 h-20 z" fill="#ff5722" />
  </g>
  <g transform="translate(150, 75)">
    <path d="M-20 0 h40 v-20 h-40 z" fill="#ff9800" />
    <path d="M-10 0 h20 v-10 h-20 z" fill="#ffc107" />
  </g>
  <g transform="translate(150, 25)">
    <path d="M-10 0 h20 v-10 h-20 z" fill="#cddc39" />
  </g>
  <path d="M150 250 Q100 275 150 300 Q200 275 150 250" fill="url(#turtleShellGradient)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's image more clearly represents a cityscape on a turtle's shell with recognizable architectural elements and the suggestion of a turtle shape.

    The composition is more coherent and aligns closely with the surreal aspect of the prompt.

    Player 2's image, while colorful and creative, lacks clear elements that connect it to the theme of a cityscape on a turtle's shell.

These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.

Shapes Metrics

Total Shapes

The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.

Player 1
14
Player 2
13
Rectangles

The number of rectangle elements (rect) in the SVG.

Player 1
5
Player 2
Circles

The number of circle elements (circle) in the SVG.

Player 1
1
Player 2
Ellipses

The number of ellipse elements (ellipse) in the SVG.

Player 1
3
Player 2
Lines

The number of line elements (line) in the SVG.

Player 1
Player 2
Polygons

The number of polygon elements (polygon) in the SVG.

Player 1
Player 2
Paths

The number of path elements (path) in the SVG.

Player 1
5
Player 2
13
Groups

The number of group elements (g) in the SVG.

Player 1
2
Player 2
4

Visual Effects Metrics

Gradients

The number of gradient definitions (linearGradient, radialGradient) in the SVG.

Player 1
2
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
1
Player 2
Filters

The number of filter definitions (filter) in the SVG.

Player 1
Player 2
Masks

The number of mask definitions (mask) in the SVG.

Player 1
Player 2
Clip Paths

The number of clipping path definitions (clipPath) in the SVG.

Player 1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
11

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
4

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
21
Player 2
61
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
3
Player 2
2
Use Elements

The number of use elements (use) in the SVG.

Player 1
Player 2

Text Metrics

Text Elements

The number of text elements (text) in the SVG.

Player 1
Player 2

AI Judging Process

Creativity

Originality, innovative use of shapes and unique approach to the prompt.

Prompt Adherence

How accurately the SVG captures the essence of the prompt.

Visual Appeal

Aesthetic quality including composition, color usage and overall visual impact.

How does judging work?

SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.

Similar Challenges