Back

SVG Drawing Match #2502

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An underwater tea party with octopuses serving cups to fish and turtles."

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Define gradients -->
  <defs>
    <linearGradient id="waterGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#70e1f5"/>
      <stop offset="100%" stop-color="#ffd194"/>
    </linearGradient>
    <radialGradient id="octoGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffb347" />
      <stop offset="100%" stop-color="#ffcc33" />
    </radialGradient>
    <radialGradient id="cupGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffffff" />
      <stop offset="100%" stop-color="#c0c0c0" />
    </radialGradient>
    <linearGradient id="shellGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#a8e6cf" />
      <stop offset="100%" stop-color="#dcedc1" />
    </linearGradient>
    <pattern id="bubblePattern" patternUnits="userSpaceOnUse" width="6" height="6">
      <circle cx="3" cy="3" r="1.5" fill="rgba(255,255,255,0.8)"/>
    </pattern>
  </defs>
  
  <!-- Background underwater -->
  <rect x="0" y="0" width="300" height="300" fill="url(#waterGradient)" />
  <rect x="0" y="0" width="300" height="300" fill="url(#bubblePattern)" opacity="0.3"/>
  
  <!-- Octopus central figure -->
  <g id="octopus">
    <!-- Head -->
    <ellipse cx="150" cy="150" rx="20" ry="25" fill="url(#octoGradient)" stroke="#e67e22" stroke-width="2"/>
    <!-- Eyes -->
    <circle cx="143" cy="145" r="2.5" fill="#000"/>
    <circle cx="157" cy="145" r="2.5" fill="#000"/>
    <!-- Arms -->
    <g id="arms">
      <!-- Create 8 arms around head -->
      <path d="M130,150 C110,140, 90,130, 80,140" stroke="#e67e22" stroke-width="3" fill="none"/>
      <path d="M132,155 C112,165, 92,180, 85,190" stroke="#e67e22" stroke-width="3" fill="none"/>
      <path d="M150,175 C150,195, 150,215, 160,230" stroke="#e67e22" stroke-width="3" fill="none"/>
      <path d="M170,155 C190,165, 210,180, 215,190" stroke="#e67e22" stroke-width="3" fill="none"/>
      <path d="M170,145 C190,135, 210,120, 215,110" stroke="#e67e22" stroke-width="3" fill="none"/>
      <path d="M150,125 C150,105, 150,85, 140,70" stroke="#e67e22" stroke-width="3" fill="none"/>
      <path d="M130,145 C110,135, 90,120, 85,110" stroke="#e67e22" stroke-width="3" fill="none"/>
      <path d="M125,155 C105,165, 85,180, 80,190" stroke="#e67e22" stroke-width="3" fill="none"/>
    </g>
  </g>
  
  <!-- Cups served by octopus arms -->
  <g id="cups">
    <!-- Cup 1 -->
    <g transform="translate(80,140)">
      <path d="M0,0 c5,-10, 15,-10, 20,0" fill="none" stroke="#b5651d" stroke-width="1" />
      <ellipse cx="10" cy="0" rx="10" ry="3" fill="url(#cupGradient)" stroke="#888" stroke-width="0.5"/>
      <rect x="0" y="0" width="20" height="8" fill="url(#cupGradient)" stroke="#888" stroke-width="0.5"/>
    </g>
    <!-- Cup 2 -->
    <g transform="translate(215,140) rotate(15)">
      <path d="M0,0 c5,-10, 15,-10, 20,0" fill="none" stroke="#b5651d" stroke-width="1"/>
      <ellipse cx="10" cy="0" rx="10" ry="3" fill="url(#cupGradient)" stroke="#888" stroke-width="0.5"/>
      <rect x="0" y="0" width="20" height="8" fill="url(#cupGradient)" stroke="#888" stroke-width="0.5"/>
    </g>
  </g>
  
  <!-- Fish guests -->
  <g id="fish">
    <!-- Fish 1 -->
    <g transform="translate(60,220)">
      <path d="M0,0 Q20,-10,40,0 T80,0 Q60,15,40,0 T0,0" fill="#f67280" stroke="#c06c84" stroke-width="1"/>
      <circle cx="70" cy="-3" r="2" fill="#000"/>
      <path d="M80,0 l10,-5" stroke="#c06c84" stroke-width="2" fill="none"/>
    </g>
    <!-- Fish 2 -->
    <g transform="translate(200,220) scale(-1,1)">
      <path d="M0,0 Q20,-10,40,0 T80,0 Q60,15,40,0 T0,0" fill="#f8b195" stroke="#f67280" stroke-width="1"/>
      <circle cx="70" cy="-3" r="2" fill="#000"/>
      <path d="M80,0 l10,-5" stroke="#f67280" stroke-width="2" fill="none"/>
    </g>
  </g>
  
  <!-- Turtle guest -->
  <g id="turtle" transform="translate(150,250) scale(0.7)">
    <!-- Shell -->
    <ellipse cx="0" cy="0" rx="35" ry="25" fill="url(#shellGradient)" stroke="#7d7461" stroke-width="2"/>
    <!-- Head -->
    <circle cx="0" cy="-30" r="10" fill="#7d7461" stroke="#5c524a" stroke-width="1"/>
    <!-- Legs -->
    <circle cx="-30" cy="-10" r="5" fill="#7d7461" stroke="#5c524a" stroke-width="1"/>
    <circle cx="30" cy="-10" r="5" fill="#7d7461" stroke="#5c524a" stroke-width="1"/>
    <circle cx="-30" cy="10" r="5" fill="#7d7461" stroke="#5c524a" stroke-width="1"/>
    <circle cx="30" cy="10" r="5" fill="#7d7461" stroke="#5c524a" stroke-width="1"/>
    <!-- Tail -->
    <path d="M0,10 l-10,20" stroke="#7d7461" stroke-width="2" fill="none"/>
  </g>
  
  <!-- Additional decorative bubbles and seaweeds -->
  <g id="decor">
    <!-- Seaweed -->
    <path d="M20,300 Q25,260, 30,300" fill="none" stroke="#2ecc71" stroke-width="3" />
    <path d="M280,300 Q275,260, 270,300" fill="none" stroke="#2ecc71" stroke-width="3" />
    <!-- Bubbles -->
    <circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.7)"/>
    <circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.8)"/>
    <circle cx="250" cy="60" r="4" fill="rgba(255,255,255,0.7)"/>
    <circle cx="220" cy="100" r="3" fill="rgba(255,255,255,0.8)"/>
  </g>
</svg>
SVG by o4-mini low (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bgGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#a0e7ff"/>
      <stop offset="100%" stop-color="#0077be"/>
    </radialGradient>
    <linearGradient id="sandGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#f4d29c"/>
      <stop offset="100%" stop-color="#d2b48c"/>
    </linearGradient>
    <radialGradient id="octoGrad" cx="40%" cy="40%" r="60%">
      <stop offset="0%" stop-color="#ff8fb1"/>
      <stop offset="100%" stop-color="#d13f6a"/>
    </radialGradient>
    <radialGradient id="teaGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffe29f"/>
      <stop offset="100%" stop-color="#f4a261"/>
    </radialGradient>
    <pattern id="bubblePattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="3" fill="rgba(255,255,255,0.3)"/>
      <circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.2)"/>
    </pattern>
  </defs>
  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGrad)"/>
  <!-- Bubbles -->
  <rect width="300" height="300" fill="url(#bubblePattern)"/>
  <!-- Seabed -->
  <path d="M0,260 C80,220 220,240 300,200 L300,300 L0,300 Z" fill="url(#sandGrad)"/>
  <!-- Seaweed -->
  <path d="M20,260 C30,200 10,180 20,120" stroke="#2e8b57" stroke-width="4" fill="none"/>
  <path d="M280,270 C270,210 290,190 280,140" stroke="#3cb371" stroke-width="3" fill="none"/>
  <path d="M50,280 C60,230 40,210 50,160" stroke="#228b22" stroke-width="3" fill="none"/>
  <!-- Octopus Body -->
  <circle cx="150" cy="160" r="40" fill="url(#octoGrad)" stroke="#b02a5c" stroke-width="2"/>
  <!-- Octopus Eyes -->
  <circle cx="135" cy="150" r="6" fill="#fff"/>
  <circle cx="165" cy="150" r="6" fill="#fff"/>
  <circle cx="135" cy="150" r="3" fill="#333"/>
  <circle cx="165" cy="150" r="3" fill="#333"/>
  <!-- Octopus Arms -->
  <path d="M130,190 C100,210 80,240 60,260" stroke="url(#octoGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <path d="M170,190 C200,220 230,240 250,260" stroke="url(#octoGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <path d="M150,200 C140,230 120,250 100,270" stroke="url(#octoGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <path d="M150,200 C160,230 180,250 200,270" stroke="url(#octoGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <path d="M115,175 C80,180 70,210 50,230" stroke="url(#octoGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <path d="M185,175 C220,180 230,210 250,230" stroke="url(#octoGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <path d="M140,180 C110,160 90,140 70,120" stroke="url(#octoGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <path d="M160,180 C190,160 210,140 230,120" stroke="url(#octoGrad)" stroke-width="8" fill="none" stroke-linecap="round"/>
  <!-- Teapot -->
  <g transform="translate(100,100) scale(0.6)">
    <ellipse cx="100" cy="80" rx="30" ry="20" fill="#f28c28" stroke="#c76c1c" stroke-width="3"/>
    <path d="M70,80 C60,60 90,50 100,60" fill="#f28c28" stroke="#c76c1c" stroke-width="3"/>
    <path d="M130,80 C140,60 110,50 100,60" fill="#f28c28" stroke="#c76c1c" stroke-width="3"/>
    <ellipse cx="100" cy="60" rx="20" ry="8" fill="#d1691b"/>
  </g>
  <!-- Teacups -->
  <g transform="translate(200,120) scale(0.5)">
    <ellipse cx="100" cy="150" rx="30" ry="15" fill="url(#teaGrad)" stroke="#b5651d" stroke-width="2"/>
    <path d="M70,150 C70,140 130,140 130,150" fill="none" stroke="#b5651d" stroke-width="2"/>
  </g>
  <g transform="translate(130,200) scale(0.4)">
    <ellipse cx="100" cy="150" rx="35" ry="18" fill="url(#teaGrad)" stroke="#b5651d" stroke-width="2"/>
    <path d="M65,150 C65,140 135,140 135,150" fill="none" stroke="#b5651d" stroke-width="2"/>
  </g>
  <!-- Fish Guests -->
  <g fill="#ffdd57" stroke="#f4a261" stroke-width="1">
    <path d="M60,140 q20,-10 40,0 q-10,10 0,20 q-20,10 -40,0 q10,-10 0,-20"/>
    <polygon points="100,140 110,130 110,150"/>
    <circle cx="70" cy="145" r="3" fill="#333"/>
  </g>
  <g fill="#8ed081" stroke="#5fa36b" stroke-width="1">
    <path d="M220,180 q25,-15 50,0 q-15,15 0,30 q-25,15 -50,0 q15,-15 0,-30"/>
    <polygon points="270,180 282,170 282,190"/>
    <circle cx="235" cy="185" r="4" fill="#333"/>
  </g>
  <!-- Turtle Guests -->
  <g transform="translate(50,220) scale(0.6)">
    <ellipse cx="100" cy="100" rx="40" ry="25" fill="#7fb069" stroke="#4e7d4b" stroke-width="3"/>
    <circle cx="80" cy="80" r="10" fill="#7fb069" stroke="#4e7d4b" stroke-width="2"/>
    <path d="M60,110 L40,120 L50,130 Z" fill="#7fb069" stroke="#4e7d4b" stroke-width="2"/>
    <path d="M140,110 L160,120 L150,130 Z" fill="#7fb069" stroke="#4e7d4b" stroke-width="2"/>
    <circle cx="85" cy="80" r="3" fill="#333"/>
  </g>
  <g transform="translate(230,250) scale(0.5)">
    <ellipse cx="100" cy="100" rx="45" ry="30" fill="#6aa84f" stroke="#4a7c38" stroke-width="3"/>
    <circle cx="75" cy="80" r="12" fill="#6aa84f" stroke="#4a7c38" stroke-width="2"/>
    <path d="M60,120 L40,130 L55,140 Z" fill="#6aa84f" stroke="#4a7c38" stroke-width="2"/>
    <path d="M140,120 L160,130 L145,140 Z" fill="#6aa84f" stroke="#4a7c38" stroke-width="2"/>
    <circle cx="75" cy="80" r="4" fill="#333"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini low (2025-04-16) Player 2

Judge's Analysis

    Player 2's submission better captures the prompt with a clear depiction of an octopus surrounded by fish and underwater elements, creating a lively and engaging tea party scene.

    The composition, colors, and overall execution are more polished and visually appealing compared to Player 1's minimalistic and less detailed representation, which lacks clarity and depth in meeting the prompt requirements.

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
39
Player 2
45
Rectangles

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

Player 1
4
Player 2
2
Circles

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

Player 1
14
Player 2
13
Ellipses

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

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

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

Player 1
17
Player 2
22
Groups

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

Player 1
10
Player 2
7

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
28
Player 2
29

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
20
Player 2
27

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
5

Complexity Metrics

Path Commands

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

Player 1
40
Player 2
61
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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