Back

SVG Drawing Match #1753

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Outer-space tea party on a giant lily pad with astronaut frogs"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background: Outer space -->
  <rect width="300" height="300" fill="black" />
  <defs>
    <!-- Star Gradient -->
    <radialGradient id="starGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="white" />
      <stop offset="100%" stop-color="rgba(255, 255, 255, 0)" />
    </radialGradient>
    <!-- Lily pad gradient -->
    <radialGradient id="lilyPadGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#66bb66" />
      <stop offset="100%" stop-color="#2e7d32" />
    </radialGradient>
    <!-- Teacup gradient -->
    <linearGradient id="teacupGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#fce4ec" />
      <stop offset="100%" stop-color="#f8bbd0" />
    </linearGradient>
    <!-- Astronaut frog suit gradient -->
    <linearGradient id="suitGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#b3e5fc" />
      <stop offset="100%" stop-color="#0288d1" />
    </linearGradient>
    <!-- Pattern for tea party cloth -->
    <pattern id="clothPattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="#fce4ec"/>
      <circle cx="5" cy="5" r="2" fill="#f8bbd0"/>
    </pattern>
  </defs>
  
  <!-- Stars -->
  <g id="stars">
    <circle cx="30" cy="40" r="2" fill="white"/>
    <circle cx="80" cy="70" r="1.5" fill="white"/>
    <circle cx="150" cy="30" r="2.5" fill="url(#starGradient)"/>
    <circle cx="220" cy="60" r="2" fill="white"/>
    <circle cx="270" cy="90" r="1.8" fill="white"/>
    <circle cx="200" cy="20" r="1.5" fill="white"/>
    <circle cx="100" cy="200" r="2" fill="white"/>
    <circle cx="250" cy="150" r="2.2" fill="white"/>
    <circle cx="190" cy="230" r="2" fill="white"/>
    <circle cx="50" cy="250" r="1.8" fill="white"/>
  </g>
  
  <!-- Giant Lily Pad -->
  <circle cx="150" cy="250" r="70" fill="url(#lilyPadGradient)" stroke="#1b5e20" stroke-width="4"/>
  <path d="M80,250 Q150,200 220,250 Q150,300 80,250Z" fill="none" stroke="#388e3c" stroke-width="3"/>
  
  <!-- Tea Party Tablecloth on the Lily Pad -->
  <ellipse cx="150" cy="250" rx="50" ry="20" fill="url(#clothPattern)" opacity="0.8" />
  
  <!-- Teacup -->
  <g transform="translate(100,220) scale(0.8)">
    <path d="M30,10 C50,0 70,0 90,10 C95,15 95,25 90,30 C70,40 50,40 30,30 C25,25 25,15 30,10Z" fill="url(#teacupGradient)" stroke="#d81b60" stroke-width="2"/>
    <path d="M90,10 Q100,20 90,30" fill="none" stroke="#880e4f" stroke-width="2"/>
  </g>
  
  <!-- Floating saucer (flying teapot?) above tea party -->
  <g transform="translate(190,100)">
    <ellipse cx="0" cy="0" rx="40" ry="15" fill="url(#teacupGradient)" stroke="#ad1457" stroke-width="2"/>
    <circle cx="0" cy="0" r="8" fill="#fff" />
    <path d="M-25,0 Q0,-20 25,0" fill="none" stroke="#d81b60" stroke-width="2"/>
  </g>
  
  <!-- Astronaut Frogs -->
  <!-- Frog 1 -->
  <g transform="translate(120,200)">
    <!-- Helmet -->
    <circle cx="0" cy="0" r="10" fill="#cfd8dc" stroke="#90a4ae" stroke-width="2"/>
    <circle cx="0" cy="0" r="8" fill="none" stroke="#90a4ae" stroke-width="1"/>
    <!-- Body -->
    <ellipse cx="0" cy="20" rx="12" ry="8" fill="url(#suitGradient)" stroke="#0277bd" stroke-width="2"/>
    <!-- Frog eyes on helmet -->
    <circle cx="-3" cy="-3" r="2" fill="black"/>
    <circle cx="3" cy="-3" r="2" fill="black"/>
    <!-- Helmet reflection -->
    <circle cx="-4" cy="-4" r="1" fill="white"/>
  </g>
  
  <!-- Frog 2 -->
  <g transform="translate(180,215)">
    <!-- Helmet -->
    <circle cx="0" cy="0" r="10" fill="#cfd8dc" stroke="#90a4ae" stroke-width="2"/>
    <circle cx="0" cy="0" r="8" fill="none" stroke="#90a4ae" stroke-width="1"/>
    <!-- Body -->
    <ellipse cx="0" cy="20" rx="12" ry="8" fill="url(#suitGradient)" stroke="#0277bd" stroke-width="2"/>
    <!-- Frog eyes on helmet -->
    <circle cx="-3" cy="-3" r="2" fill="black"/>
    <circle cx="3" cy="-3" r="2" fill="black"/>
    <!-- Helmet reflection -->
    <circle cx="3" cy="-4" r="1" fill="white"/>
  </g>
  
  <!-- Tea Party Table (floating on lily pad) -->
  <g transform="translate(145,245)">
    <rect x="-15" y="-5" width="30" height="10" rx="3" fill="#fff9c4" stroke="#f9a825" stroke-width="1"/>
    <line x1="-10" y1="-5" x2="-10" y2="5" stroke="#fbc02d" stroke-width="1"/>
    <line x1="10" y1="-5" x2="10" y2="5" stroke="#fbc02d" stroke-width="1"/>
  </g>
  
  <!-- Additional Floating Elements: Tea steam and bubbles -->
  <g id="steam">
    <path d="M105,200 Q110,190 115,200" fill="none" stroke="white" stroke-width="1" opacity="0.7"/>
    <path d="M107,195 Q112,185 117,195" fill="none" stroke="white" stroke-width="1" opacity="0.5"/>
  </g>
  
  <g id="bubbles">
    <circle cx="230" cy="140" r="3" fill="#81d4fa" opacity="0.8"/>
    <circle cx="235" cy="145" r="2" fill="#81d4fa" opacity="0.8"/>
    <circle cx="225" cy="135" r="2.5" fill="#81d4fa" opacity="0.8"/>
  </g>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="lily-pad" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#34C759" />
      <stop offset="1" stop-color="#8BC34A" />
    </linearGradient>
    <radialGradient id="tea-pot" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0" stop-color="#FFD700" />
      <stop offset="1" stop-color="#FFC107" />
    </radialGradient>
    <pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="#FFFFFF" />
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#stars)" />
  <g transform="translate(150, 150)">
    <ellipse cx="0" cy="0" rx="120" ry="80" fill="url(#lily-pad)" />
    <g transform="translate(-40, -20)">
      <circle cx="0" cy="0" r="20" fill="#FFFFFF" />
      <circle cx="0" cy="0" r="10" fill="#000000" />
      <circle cx="0" cy="-10" r="5" fill="#FFFFFF" />
    </g>
    <g transform="translate(40, -20)">
      <circle cx="0" cy="0" r="20" fill="#FFFFFF" />
      <circle cx="0" cy="0" r="10" fill="#000000" />
      <circle cx="0" cy="-10" r="5" fill="#FFFFFF" />
    </g>
    <g transform="translate(0, 20)">
      <rect x="-20" y="-10" width="40" height="20" fill="url(#tea-pot)" rx="5" />
      <circle cx="0" cy="-10" r="5" fill="#FFFFFF" />
      <circle cx="0" cy="-10" r="2" fill="#000000" />
    </g>
    <g transform="translate(-60, 20)">
      <rect x="-10" y="-5" width="20" height="10" fill="#FFFFFF" rx="2" />
      <circle cx="0" cy="-5" r="2" fill="#000000" />
    </g>
    <g transform="translate(60, 20)">
      <rect x="-10" y="-5" width="20" height="10" fill="#FFFFFF" rx="2" />
      <circle cx="0" cy="-5" r="2" fill="#000000" />
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's image creatively depicts the tea party theme with a lily pad and includes elements like a tea set and space setting, adhering more closely to the prompt.

    The presence of stars and an unidentified flying object adds to the outer-space ambiance, while the astronaut frogs are clearly represented.

    Player 2's image, while visually simplistic, lacks clear elements of a tea party or outer-space setting, making Player 1's submission more aligned with the prompt.

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

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

Player 1
3
Player 2
4
Circles

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

Player 1
26
Player 2
11
Ellipses

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

Player 1
4
Player 2
1
Lines

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

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

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

Player 1
8
Player 2
6

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
17
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
22
Player 2
6

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
5
Player 2
6

Complexity Metrics

Path Commands

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

Player 1
18
Player 2
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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