Back

SVG Drawing Match #1468

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Spider sipping a cappuccino on a relaxed rainy day"

SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="rainGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#87CEFA"/>
      <stop offset="1" stop-color="#00BFFF"/>
    </linearGradient>
    <radialGradient id="spiderGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0" stop-color="#FFD700"/>
      <stop offset="1" stop-color="#FFA500"/>
    </radialGradient>
    <pattern id="rainPattern" patternUnits="userSpaceOnUse" width="6" height="6">
      <circle cx="3" cy="3" r="1" fill="url(#rainGradient)"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#rainPattern)"/>
  <g transform="translate(150 150)">
    <circle cx="0" cy="0" r="50" fill="url(#spiderGradient)"/>
    <circle cx="0" cy="0" r="45" fill="none" stroke="black" stroke-width="2"/>
    <circle cx="10" cy="10" r="5" fill="black"/>
    <circle cx="-10" cy="10" r="5" fill="black"/>
    <line x1="0" y1="20" x2="30" y2="50" stroke="black" stroke-width="2"/>
    <line x1="0" y1="20" x2="-30" y2="50" stroke="black" stroke-width="2"/>
    <line x1="0" y1="20" x2="30" y2="-10" stroke="black" stroke-width="2"/>
    <line x1="0" y1="20" x2="-30" y2="-10" stroke="black" stroke-width="2"/>
  </g>
  <g transform="translate(100 200)">
    <rect x="-20" y="0" width="40" height="20" rx="5" ry="5" fill="#D2B48C"/>
    <circle cx="-10" cy="10" r="5" fill="white"/>
    <circle cx="10" cy="10" r="5" fill="white"/>
    <ellipse cx="0" cy="10" rx="10" ry="3" fill="black"/>
    <path d="M-20 20 Q0 40 20 20" stroke="black" stroke-width="2" fill="none"/>
    <path d="M-15 15 C-10 25 10 25 15 15" stroke="black" stroke-width="2" fill="none"/>
  </g>
  <text x="150" y="280" text-anchor="middle" font-size="16" font-family="Arial" fill="white">Spider sipping a cappuccino</text>
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background gradient for a rainy day -->
  <defs>
    <linearGradient id="rainGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#a2cffe"/>
      <stop offset="100%" stop-color="#6d9ecf"/>
    </linearGradient>
    <radialGradient id="cupSteamGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="rgba(255,255,255,0.8)"/>
      <stop offset="100%" stop-color="rgba(255,255,255,0)"/>
    </radialGradient>
    <pattern id="raindropPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="2" cy="2" r="1" fill="#89c2f0"/>
    </pattern>
  </defs>

  <!-- Rain Background using pattern -->
  <rect width="300" height="300" fill="url(#rainGrad)" />
  <rect width="300" height="300" fill="url(#raindropPattern)" opacity="0.4" />

  <!-- Spider Body and Head -->
  <g id="spider">
    <!-- Spider abdomen -->
    <ellipse cx="150" cy="180" rx="30" ry="40" fill="#222" stroke="#000" stroke-width="2"/>
    <!-- Spider head -->
    <circle cx="150" cy="120" r="20" fill="#222" stroke="#000" stroke-width="2"/>
    
    <!-- Spider legs -->
    <!-- Left side legs (paths) -->
    <path d="M 140 115 C 100 100, 80 130, 70 150" fill="none" stroke="#222" stroke-width="3" stroke-linecap="round"/>
    <path d="M 140 125 C 100 130, 80 160, 70 185" fill="none" stroke="#222" stroke-width="3" stroke-linecap="round"/>
    <path d="M 140 135 C 100 160, 80 190, 70 215" fill="none" stroke="#222" stroke-width="3" stroke-linecap="round"/>
    <path d="M 140 145 C 100 190, 80 220, 70 245" fill="none" stroke="#222" stroke-width="3" stroke-linecap="round"/>
    <!-- Right side legs (paths) -->
    <path d="M 160 115 C 200 100, 220 130, 230 150" fill="none" stroke="#222" stroke-width="3" stroke-linecap="round"/>
    <path d="M 160 125 C 200 130, 220 160, 230 185" fill="none" stroke="#222" stroke-width="3" stroke-linecap="round"/>
    <path d="M 160 135 C 200 160, 220 190, 230 215" fill="none" stroke="#222" stroke-width="3" stroke-linecap="round"/>
    <path d="M 160 145 C 200 190, 220 220, 230 245" fill="none" stroke="#222" stroke-width="3" stroke-linecap="round"/>
  </g>
  
  <!-- Cappuccino cup -->
  <g id="cup">
    <!-- Cup body -->
    <rect x="110" y="80" width="80" height="40" rx="8" ry="8" fill="#fff" stroke="#8B4513" stroke-width="2"/>
    <!-- Cup handle -->
    <path d="M 190 90 Q 205 100, 190 110" fill="none" stroke="#8B4513" stroke-width="4"/>
    <!-- Cappuccino foam -->
    <ellipse cx="150" cy="80" rx="40" ry="10" fill="#f3e5ab" stroke="#d2b48c" stroke-width="1"/>
    <!-- Espresso swirl on top -->
    <path d="M 130 80 C 140 70, 160 70, 170 80" fill="none" stroke="#d2b48c" stroke-width="2"/>
  
    <!-- Steam rising from the cup -->
    <path d="M 140 70 C 135 60, 145 50, 140 40" fill="none" stroke="url(#cupSteamGrad)" stroke-width="3" stroke-linecap="round"/>
    <path d="M 160 70 C 155 60, 165 50, 160 40" fill="none" stroke="url(#cupSteamGrad)" stroke-width="3" stroke-linecap="round"/>
  </g>
  
  <!-- Umbrella (as a quirky accessory for the spider during rain) -->
  <g id="umbrella">
    <path d="M 50 50 A 50 50 0 0 1 150 50" fill="url(#rainGrad)" stroke="#555" stroke-width="3"/>
    <line x1="100" y1="50" x2="100" y2="90" stroke="#555" stroke-width="3"/>
    <line x1="120" y1="50" x2="120" y2="90" stroke="#555" stroke-width="3"/>
  </g>
  
  <!-- Ground (damp atmosphere) -->
  <ellipse cx="150" cy="280" rx="140" ry="10" fill="rgba(0,0,0,0.1)"/>
  
  <!-- Artistic overlay: subtle rain streaks -->
  <g opacity="0.5" stroke="#a0a0a0" stroke-width="1">
    <line x1="20" y1="10" x2="30" y2="30"/>
    <line x1="50" y1="5" x2="60" y2="25"/>
    <line x1="80" y1="15" x2="90" y2="35"/>
    <line x1="110" y1="0" x2="120" y2="20"/>
    <line x1="140" y1="10" x2="150" y2="30"/>
    <line x1="170" y1="5" x2="180" y2="25"/>
    <line x1="200" y1="15" x2="210" y2="35"/>
    <line x1="230" y1="0" x2="240" y2="20"/>
    <line x1="260" y1="10" x2="270" y2="30"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's image captures the prompt more effectively with a clear depiction of a spider enjoying a cappuccino under an umbrella on a rainy day.

    The composition and elements like the umbrella and rain enhance the theme, while the technical execution is clean and visually appealing.

    In contrast, Player 1's image lacks clarity and detail, making it less effective in conveying the intended idea.

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
16
Player 2
32
Rectangles

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

Player 1
2
Player 2
3
Circles

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

Player 1
7
Player 2
2
Ellipses

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

Player 1
1
Player 2
3
Lines

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

Player 1
4
Player 2
11
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
2
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
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
7
Player 2
20

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
14

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

Complexity Metrics

Path Commands

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

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