Back

SVG Drawing Match #1

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal snail with a city skyline shell gliding through starry sky"

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="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#123456" />
      <stop offset="100%" stop-color="#000000" />
    </linearGradient>
    <radialGradient id="shellGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffcc00" />
      <stop offset="100%" stop-color="#ff9900" />
    </radialGradient>
    <pattern id="cityPattern" patternUnits="userSpaceOnUse" width="100" height="100">
      <rect x="0" y="0" width="100" height="100" fill="#000000"/>
      <path d="M10,20 L90,20 L90,50 L10,50 Z" fill="#cccccc"/>
      <path d="M10,60 L90,60 L90,90 L10,90 Z" fill="#cccccc"/>
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#skyGradient)"/>
  <g transform="translate(150,150)">
    <circle cx="0" cy="-50" r="20" fill="url(#shellGradient)"/>
    <circle cx="0" cy="-50" r="18" fill="url(#cityPattern)"/>
    <circle cx="0" cy="-50" r="15" fill="url(#cityPattern)"/>
    <path d="M0,-50 C-20,-20 20,-20 0,-50 C-20,-20 20,-20 0,-50 C-20,-20 20,-20 0,-50" stroke="#ffcc00" stroke-width="2" fill="none"/>
    <path d="M0,50 C-30,80 30,80 0,50" stroke="#ffcc00" stroke-width="2" fill="none"/>
    <path d="M0,50 C-30,80 30,80 0,50 C-30,80 30,80 0,50 C-30,80 30,80 0,50" stroke="#ffcc00" stroke-width="2" fill="none"/>
    <path d="M0,50 C-30,80 30,80 0,50 C-30,80 30,80 0,50 C-30,80 30,80 0,50" stroke="#ffcc00" stroke-width="2" fill="none"/>
    <circle cx="0" cy="50" r="5" fill="#ffcc00"/>
  </g>
  <g>
    <circle cx="50" cy="50" r="2" fill="#fff"/>
    <circle cx="100" cy="100" r="3" fill="#fff"/>
    <circle cx="250" cy="150" r="4" fill="#fff"/>
    <circle cx="200" cy="200" r="2" fill="#fff"/>
    <circle cx="150" cy="250" r="3" fill="#fff"/>
  </g>
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0B0B3B"/>
      <stop offset="100%" style="stop-color:#1B1B6B"/>
    </linearGradient>
    <radialGradient id="starGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:white"/>
      <stop offset="100%" style="stop-color:transparent"/>
    </radialGradient>
    <pattern id="cityPattern" width="60" height="60" patternUnits="userSpaceOnUse">
      <rect x="0" y="30" width="10" height="30" fill="#2B2B5B"/>
      <rect x="15" y="20" width="10" height="40" fill="#3B3B7B"/>
      <rect x="30" y="35" width="10" height="25" fill="#2B2B5B"/>
      <rect x="45" y="15" width="10" height="45" fill="#3B3B7B"/>
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)"/>

  <!-- Stars -->
  <g class="stars">
    <circle cx="50" cy="50" r="1" fill="white"/>
    <circle cx="80" cy="30" r="1.5" fill="white"/>
    <circle cx="150" cy="40" r="1" fill="white"/>
    <circle cx="200" cy="60" r="1.2" fill="white"/>
    <circle cx="250" cy="45" r="1" fill="white"/>
    <circle cx="40" cy="100" r="1.3" fill="white"/>
    <circle cx="120" cy="80" r="1" fill="white"/>
    <circle cx="180" cy="120" r="1.5" fill="white"/>
    <circle cx="220" cy="90" r="1" fill="white"/>
    <circle cx="270" cy="150" r="1.2" fill="white"/>
  </g>

  <!-- Snail Body -->
  <path d="M50,200 Q100,180 150,190 T250,200" 
        fill="none" stroke="#9B6B4B" stroke-width="20"/>
  
  <!-- Snail Shell -->
  <path d="M150,200 a50,50 0 1,1 100,0 a50,50 0 1,1 -100,0" 
        fill="url(#cityPattern)" stroke="#4B4B8B" stroke-width="5"/>
  
  <!-- City Details -->
  <g transform="translate(150,200) rotate(-45)">
    <rect x="-30" y="-40" width="5" height="15" fill="#FFD700"/>
    <rect x="-10" y="-50" width="5" height="20" fill="#FFD700"/>
    <rect x="10" y="-45" width="5" height="18" fill="#FFD700"/>
    <rect x="30" y="-55" width="5" height="25" fill="#FFD700"/>
  </g>

  <!-- Snail Features -->
  <g transform="translate(50,200)">
    <circle cx="0" cy="-10" r="5" fill="black"/>
    <line x1="0" y1="-15" x2="0" y2="-30" stroke="black" stroke-width="2"/>
    <circle cx="0" cy="-30" r="3" fill="#FFD700"/>
  </g>

  <!-- Trail -->
  <path d="M0,220 Q25,215 50,220" 
        stroke="#CCCCCC" stroke-width="2" fill="none" opacity="0.5"/>

  <!-- Glowing Effect -->
  <circle cx="150" cy="200" r="60" fill="url(#starGlow)" opacity="0.3"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's image better captures the surreal concept with a clear depiction of a snail whose shell incorporates a city skyline, set against a starry sky.

    The composition is creative and visually appealing, adhering closely to the prompt.

    While Player 1's image is abstract, it lacks the identifiable elements of a snail and city skyline, making it less effective in meeting the criteria.

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
17
Player 2
26
Rectangles

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

Player 1
2
Player 2
9
Circles

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

Player 1
9
Player 2
13
Ellipses

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

Player 1
Player 2
Lines

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

Player 1
Player 2
1
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
6
Player 2
3
Groups

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

Player 1
2
Player 2
3

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
1
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
2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
8

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
1
Player 2
2

Complexity Metrics

Path Commands

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

Player 1
24
Player 2
8
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
3
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