Back

SVG Drawing Match #1955

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Umbrella growing from a teacup"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <linearGradient id="teacupGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#D4A373; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#8C4A2F; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="umbrellaGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FFDD67; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF8C42; stop-opacity:1" />
    </radialGradient>
    <linearGradient id="handleGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#6E5849; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#3B2F2F; stop-opacity:1" />
    </linearGradient>
    <pattern id="cupPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="10" cy="10" r="5" fill="#F1C27D" />
      <circle cx="10" cy="10" r="2" fill="#8C4A2F" />
    </pattern>
  </defs>

  <!-- Teacup -->
  <g id="teacup" transform="translate(150, 250)">
    <path d="M-50,0 Q0,-80 50,0 Z" fill="url(#teacupGradient)" stroke="#5D4037" stroke-width="2"/>
    <path d="M50,0 Q0,40 -50,0" fill="url(#cupPattern)" stroke="#5D4037" stroke-width="2"/>
    <!-- Handle -->
    <path d="M50,0 C70,-30 70,30 50,60" fill="none" stroke="url(#handleGradient)" stroke-width="5" />
  </g>

  <!-- Stem -->
  <g id="stem">
    <path d="M150,250 L150,150" stroke="#6E5849" stroke-width="4" stroke-linecap="round" />
  </g>

  <!-- Umbrella -->
  <g id="umbrella">
    <!-- Umbrella canopy -->
    <path d="M100,150 Q150,50 200,150 Z" fill="url(#umbrellaGradient)" stroke="#FF8C42" stroke-width="3"/>
    <!-- Ribs -->
    <line x1="150" y1="150" x2="100" y2="150" stroke="#FF8C42" stroke-width="2"/>
    <line x1="150" y1="150" x2="125" y2="100" stroke="#FF8C42" stroke-width="2"/>
    <line x1="150" y1="150" x2="175" y2="100" stroke="#FF8C42" stroke-width="2"/>
    <line x1="150" y1="150" x2="100" y2="150" stroke="#FF8C42" stroke-width="2"/>
    <line x1="150" y1="150" x2="200" y2="150" stroke="#FF8C42" stroke-width="2"/>
    <!-- Central rod -->
    <line x1="150" y1="150" x2="150" y2="100" stroke="#6E5849" stroke-width="3"/>
  </g>

  <!-- Decorative Elements -->
  <g id="decor">
    <circle cx="150" cy="90" r="5" fill="#FFFFFF" stroke="#FF8C42" stroke-width="1"/>
    <circle cx="130" cy="80" r="3" fill="#FFFFFF" stroke="#FF8C42" stroke-width="1"/>
    <circle cx="170" cy="80" r="3" fill="#FFFFFF" stroke="#FF8C42" stroke-width="1"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with subtle gradient -->
  <rect width="300" height="300" fill="url(#bgGradient)"/>
  
  <!-- Teacup and umbrella elements -->
  <g transform="translate(150, 150)">
    <!-- Teacup -->
    <path d="M-60-80 Q -30-130 0-130 Q 30-130 60-80 L 40-110 A 20 20 0 0 1 0-130 A 20 20 0 0 0 -40-110 L-60-80 Z"
          fill="rgba(255,255,255,0.8)"
          stroke="url(#cupGradient)"
          stroke-width="2"/>
    
    <!-- Cup handle -->
    <ellipse cx="-25" cy="-100" rx="10" ry="5"
              fill="rgba(255,255,255,0.8)"/>
    
    <!-- Steam from teacup -->
    <path d="M0-130 Q -20-120 -40-110"
          fill="none"
          stroke="rgba(255,255,255,0.6)"
          stroke-width="2"/>
    
    <!-- Saucer -->
    <path d="M-70-140 Q -35-150 0-150 Q 35-150 70-140 L 60-130 A 30 30 0 0 1 0-150 A 30 30 0 0 0 -60-130 Z"
          fill="rgba(255,255,255,0.6)"
          stroke="rgba(200,200,200,0.4)"
          stroke-width="2"/>
    
    <!-- Umbrella handle -->
    <rect x="-10" y="-80" width="20" height="80"
          fill="rgba(100,50,20,0.8)"/>
    
    <!-- Umbrella canopy -->
    <path d="M0-80 Q -40-40 -40-20 Q -40 0 -20 20 Q 0 40 20 40 Q 40 40 40 20 Q 40 0 20-20 Q 0-40 -20-40 Z"
          fill="url(#umbrellaGradient)"
          stroke="rgba(0,0,0,0.2)"
          stroke-width="1"/>
    
    <!-- Umbrella ribs -->
    <path d="M-40-20 L0-80 M-20-30 L0-80 M0-40 L0-80 M20-30 L0-80 M40-20 L0-80"
          fill="none"
          stroke="rgba(255,255,255,0.4)"
          stroke-width="1"/>
    
    <!-- Rain effect -->
    <defs>
      <mask id="rainMask">
        <rect width="300" height="300" fill="white"/>
        <path d="M0 0 Q 150 300 300 0" fill="black"/>
        <path d="M150 0 Q 300 150 150 300" fill="black"/>
      </mask>
    </defs>
    
    <rect x="0" y="0" width="300" height="300" fill="url(#rainGradient)" mask="url(#rainMask)" opacity="0.3"/>
    
    <!-- Water effects -->
    <path d="M-20-130 Q 0-140 20-130 Q 40-120 20-110 L0-100 L-20-110 Z"
          fill="rgba(50,150,200,0.4)"/>
  </g>

  <!-- Gradients -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#e6f3ff"/>
      <stop offset="1" stop-color="#ccebff"/>
    </linearGradient>
    
    <linearGradient id="cupGradient" x1="0" y1="0" x2="0" y2="100">
      <stop offset="0" stop-color="#ff99cc"/>
      <stop offset="1" stop-color="#cc99ff"/>
    </linearGradient>
    
    <conicGradient id="umbrellaGradient" cx="0" cy="0">
      <stop offset="0" stop-color="#ff0066"/>
      <stop offset="0.5" stop-color="#ff00ff"/>
      <stop offset="1" stop-color="#6600ff"/>
    </conicGradient>
    
    <radialGradient id="rainGradient" cx="150" cy="150" r="150">
      <stop offset="0" stop-color="#0066ff"/>
      <stop offset="0.5" stop-color="#0033ff"/>
      <stop offset="1" stop-color="#001a00"/>
    </radialGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1's image effectively captures the concept of an umbrella emanating from a teacup with a clear and visually appealing design.

    The use of warm colors and balanced composition enhances the visual appeal.

    In contrast, Player 2's submission is abstract and less recognizable, making it difficult to discern the prompt's theme.

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
13
Rectangles

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

Player 1
Player 2
4
Circles

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

Player 1
5
Player 2
Ellipses

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

Player 1
Player 2
1
Lines

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

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

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

Player 1
4
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
14
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
19

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
1

Complexity Metrics

Path Commands

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

Player 1
12
Player 2
45
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
4
Player 2
5
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