Back

SVG Drawing Match #1557

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus with a top hat juggling cupcakes underwater"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#4DA8E2;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#2A7F9E;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="hatGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#000000;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#555555;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="cupcakeGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#FF6F61;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFB74D;stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#waterGradient)" />
  
  <g transform="translate(150,150)">
    <path d="M-30,40 C-50,70 -70,70 -70,30 C-70,-10 -50,-20 -30,0 C-10,20 10,30 0,60 C10,90 -10,100 -30,90" fill="#FF6347" />
    <path d="M30,40 C50,70 70,70 70,30 C70,-10 50,-20 30,0 C10,20 -10,30 0,60 C-10,90 10,100 30,90" fill="#FF6347" />
    <circle r="50" fill="#FF5733" />
    <path d="M-55,-10 Q-35,-30 0,-20 Q35,-30 55,-10" fill="#FFD700" />
    <path d="M-10,60 Q-40,80 -70,70" stroke="#6A5ACD" stroke-width="4" fill="none" />
    <path d="M10,60 Q40,80 70,70" stroke="#6A5ACD" stroke-width="4" fill="none" />
    
    <path d="M-10,-80 C10,-110 10,-125 -10,-128 C-30,-125 -30,-110 -10,-100" fill="url(#hatGradient)" />
    
    <g transform="translate(-25,-50)">
      <g fill="url(#cupcakeGradient)">
        <circle cx="-25" cy="0" r="15" />
        <circle cx="25" cy="0" r="15" />
      </g>
      <path d="M-25,0 v30 h-15 v-20 z" fill="#FFFFFF" />
      <path d="M25,0 v30 h15 v-20 z" fill="#FFFFFF" />
      <text x="-37" y="5" font-family="Arial" font-size="10" fill="#4B0082">Cupcake</text>
      <text x="13" y="5" font-family="Arial" font-size="10" fill="#4B0082">Cupcake</text>
    </g>
  </g>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Underwater background with gradients -->
  <defs>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#1a3c80" />
      <stop offset="100%" stop-color="#052555" />
    </linearGradient>
    <radialGradient id="bubbleGradient" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="white" stop-opacity="0.8" />
      <stop offset="100%" stop-color="white" stop-opacity="0.3" />
    </radialGradient>
    <linearGradient id="tentacleGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#9b59b6" />
      <stop offset="100%" stop-color="#8e44ad" />
    </linearGradient>
    <linearGradient id="hatGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#111" />
      <stop offset="100%" stop-color="#333" />
    </linearGradient>
    <linearGradient id="hatBandGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#e74c3c" />
      <stop offset="100%" stop-color="#c0392b" />
    </linearGradient>
    <radialGradient id="frostingGradient1" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#f39c12" />
      <stop offset="100%" stop-color="#e67e22" />
    </radialGradient>
    <radialGradient id="frostingGradient2" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#e74c3c" />
      <stop offset="100%" stop-color="#c0392b" />
    </radialGradient>
    <radialGradient id="frostingGradient3" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#2ecc71" />
      <stop offset="100%" stop-color="#27ae60" />
    </radialGradient>
    <filter id="bubbleBlur" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="1" />
    </filter>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#waterGradient)" />
  
  <!-- Bubbles -->
  <g id="bubbles">
    <circle cx="50" cy="70" r="4" fill="url(#bubbleGradient)" filter="url(#bubbleBlur)" />
    <circle cx="80" cy="40" r="6" fill="url(#bubbleGradient)" filter="url(#bubbleBlur)" />
    <circle cx="200" cy="60" r="5" fill="url(#bubbleGradient)" filter="url(#bubbleBlur)" />
    <circle cx="240" cy="90" r="7" fill="url(#bubbleGradient)" filter="url(#bubbleBlur)" />
    <circle cx="180" cy="220" r="3" fill="url(#bubbleGradient)" filter="url(#bubbleBlur)" />
    <circle cx="60" cy="190" r="5" fill="url(#bubbleGradient)" filter="url(#bubbleBlur)" />
    <circle cx="270" cy="180" r="4" fill="url(#bubbleGradient)" filter="url(#bubbleBlur)" />
    <circle cx="120" cy="250" r="6" fill="url(#bubbleGradient)" filter="url(#bubbleBlur)" />
  </g>
  
  <!-- Underwater plants -->
  <path d="M20,300 Q30,270 25,250 Q20,230 30,200 Q40,170 30,150" stroke="#2ecc71" stroke-width="3" fill="none" />
  <path d="M40,300 Q50,260 45,240 Q40,230 50,210" stroke="#27ae60" stroke-width="2" fill="none" />
  <path d="M260,300 Q270,260 260,240 Q250,220 260,200 Q270,180 260,160" stroke="#16a085" stroke-width="3" fill="none" />
  <path d="M280,300 Q290,280 285,260 Q280,240 290,220" stroke="#1abc9c" stroke-width="2" fill="none" />

  <!-- Octopus body -->
  <ellipse cx="150" cy="180" rx="40" ry="45" fill="#9b59b6" />
  
  <!-- Octopus eyes -->
  <circle cx="135" cy="170" r="10" fill="white" />
  <circle cx="165" cy="170" r="10" fill="white" />
  <circle cx="135" cy="170" r="5" fill="black" />
  <circle cx="165" cy="170" r="5" fill="black" />
  <circle cx="133" cy="168" r="2" fill="white" />
  <circle cx="163" cy="168" r="2" fill="white" />
  
  <!-- Octopus smile -->
  <path d="M135,195 Q150,205 165,195" stroke="white" stroke-width="2" fill="none" />
  
  <!-- Octopus tentacles -->
  <path d="M120,210 Q90,230 70,220 Q60,210 80,200" stroke="url(#tentacleGradient)" stroke-width="10" fill="none" stroke-linecap="round" />
  <path d="M110,215 Q70,245 50,230 Q40,215 60,195" stroke="url(#tentacleGradient)" stroke-width="8" fill="none" stroke-linecap="round" />
  <path d="M130,220 Q110,260 80,270 Q70,280 90,290" stroke="url(#tentacleGradient)" stroke-width="9" fill="none" stroke-linecap="round" />
  <path d="M150,225 Q150,260 130,280 Q120,290 140,295" stroke="url(#tentacleGradient)" stroke-width="10" fill="none" stroke-linecap="round" />
  <path d="M170,225 Q190,260 200,280 Q210,290 195,295" stroke="url(#tentacleGradient)" stroke-width="9" fill="none" stroke-linecap="round" />
  <path d="M190,215 Q220,230 250,225 Q265,220 260,195" stroke="url(#tentacleGradient)" stroke-width="8" fill="none" stroke-linecap="round" />
  <path d="M180,210 Q210,220 240,210 Q255,200 240,185" stroke="url(#tentacleGradient)" stroke-width="10" fill="none" stroke-linecap="round" />
  
  <!-- Juggling tentacles -->
  <path d="M120,200 Q100,170 90,130 Q85,110 95,100" stroke="url(#tentacleGradient)" stroke-width="7" fill="none" stroke-linecap="round" />
  <path d="M180,200 Q200,160 210,130 Q215,110 205,100" stroke="url(#tentacleGradient)" stroke-width="7" fill="none" stroke-linecap="round" />
  
  <!-- Top hat -->
  <rect x="125" y="115" width="50" height="5" rx="2" fill="#444" />
  <rect x="130" y="80" width="40" height="35" rx="2" fill="url(#hatGradient)" />
  <rect x="130" y="110" width="40" height="5" fill="url(#hatBandGradient)" />
  <ellipse cx="150" cy="115" rx="25" ry="3" fill="#222" />
  
  <!-- Cupcakes -->
  <g id="cupcake1" transform="translate(90,90) rotate(-10)">
    <path d="M0,0 L-10,10 Q0,15 10,10 Z" fill="#f1c40f" />
    <path d="M-10,10 Q0,5 10,10 Q0,30 -10,10 Z" fill="#e67e22" />
    <ellipse cx="0" cy="9" rx="10" ry="6" fill="url(#frostingGradient1)" />
    <circle cx="0" cy="3" r="2" fill="#e74c3c" />
    <circle cx="5" cy="7" r="1.5" fill="#3498db" />
    <circle cx="-5" cy="6" r="1.5" fill="#3498db" />
  </g>
  
  <g id="cupcake2" transform="translate(210,90) rotate(10)">
    <path d="M0,0 L-10,10 Q0,15 10,10 Z" fill="#f1c40f" />
    <path d="M-10,10 Q0,5 10,10 Q0,30 -10,10 Z" fill="#e67e22" />
    <ellipse cx="0" cy="9" rx="10" ry="6" fill="url(#frostingGradient2)" />
    <circle cx="0" cy="3" r="2" fill="#f39c12" />
    <circle cx="5" cy="7" r="1.5" fill="#3498db" />
    <circle cx="-5" cy="6" r="1.5" fill="#3498db" />
  </g>
  
  <g id="cupcake3" transform="translate(150,40) rotate(0)">
    <path d="M0,0 L-10,10 Q0,15 10,10 Z" fill="#f1c40f" />
    <path d="M-10,10 Q0,5 10,10 Q0,30 -10,10 Z" fill="#e67e22" />
    <ellipse cx="0" cy="9" rx="10" ry="6" fill="url(#frostingGradient3)" />
    <circle cx="0" cy="3" r="2" fill="#e74c3c" />
    <circle cx="5" cy="7" r="1.5" fill="#3498db" />
    <circle cx="-5" cy="6" r="1.5" fill="#3498db" />
  </g>
  
  <!-- Motion lines -->
  <path d="M95,90 Q100,80 105,90" stroke="white" stroke-width="1" fill="none" stroke-dasharray="2,2" />
  <path d="M205,90 Q200,80 195,90" stroke="white" stroke-width="1" fill="none" stroke-dasharray="2,2" />
  <path d="M145,50 Q150,40 155,50" stroke="white" stroke-width="1" fill="none" stroke-dasharray="2,2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's submission more effectively captures the prompt with a clearly recognizable octopus juggling cupcakes underwater, adorned with a top hat.

    The composition is visually appealing with vibrant colors, well-defined shapes, and a playful expression.

    In contrast, Player 1's image lacks clarity and detail, making it difficult to identify the specified elements of 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
12
Player 2
55
Rectangles

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

Player 1
1
Player 2
4
Circles

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

Player 1
3
Player 2
23
Ellipses

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

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

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

Player 1
8
Player 2
23
Groups

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

Player 1
3
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
8
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
Player 2
Filters

The number of filter definitions (filter) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
17

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
20

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
3

Complexity Metrics

Path Commands

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

Player 1
30
Player 2
73
Max Group Nesting

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

Player 1
2
Player 2
Defs Elements

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

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