Back

SVG Drawing Match #2484

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus wearing a crown, juggling three lit candles underwater."

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="grad-ocean" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#3498db" />
      <stop offset="100%" stop-color="#2ecc71" />
    </linearGradient>
    <radialGradient id="grad-crown" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ffd700" />
      <stop offset="100%" stop-color="#ffd700" stop-opacity="0" />
    </radialGradient>
    <radialGradient id="grad-flame" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ff9900" />
      <stop offset="100%" stop-color="#ff3300" />
    </radialGradient>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#grad-ocean)" rx="10" />

  <!-- Octopus -->
  <g transform="translate(150 150)">
    <path d="M 0 -60 C 20 -60 40 -40 40 0 C 40 40 20 60 0 60 C -20 60 -40 40 -40 0 C -40 -40 -20 -60 0 -60 Z"
      fill="#e74c3c" rx="5" />
    <path d="M 0 -30 C 10 -30 20 -20 20 0 C 20 20 10 30 0 30 C -10 30 -20 20 -20 0 C -20 -20 -10 -30 0 -30 Z"
      fill="#e74c3c" rx="5" transform="rotate(45)" />
    <path d="M 0 -30 C 10 -30 20 -20 20 0 C 20 20 10 30 0 30 C -10 30 -20 20 -20 0 C -20 -20 -10 -30 0 -30 Z"
      fill="#e74c3c" rx="5" transform="rotate(-45)" />
  </g>

  <!-- Crown -->
  <g transform="translate(150 50)">
    <path d="M -40 0 C -30 10 -20 20 -10 30 C 0 40 10 50 20 60 C 30 70 40 80 50 90"
      stroke="#ffd700" stroke-width="5" fill="none" />
    <path d="M 40 0 C 30 10 20 20 10 30 C 0 40 -10 50 -20 60 C -30 70 -40 80 -50 90"
      stroke="#ffd700" stroke-width="5" fill="none" />
    <circle cx="0" cy="0" r="20" fill="url(#grad-crown)" />
  </g>

  <!-- Candles -->
  <g transform="translate(70 150)">
    <rect x="0" y="0" width="10" height="50" fill="#ffffff" rx="2" />
    <rect x="0" y="50" width="10" height="10" fill="url(#grad-flame)" rx="2" />
  </g>
  <g transform="translate(150 150)">
    <rect x="0" y="0" width="10" height="70" fill="#ffffff" rx="2" />
    <rect x="0" y="70" width="10" height="10" fill="url(#grad-flame)" rx="2" />
  </g>
  <g transform="translate(230 150)">
    <rect x="0" y="0" width="10" height="30" fill="#ffffff" rx="2" />
    <rect x="0" y="30" width="10" height="10" fill="url(#grad-flame)" rx="2" />
  </g>
</svg>
SVG by Gemini 2.5 Pro Preview 05-06
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bgGradient" cx="50%" cy="40%" r="75%" fx="50%" fy="30%">
      <stop offset="0%" style="stop-color:#76D7C4; stop-opacity:1" />
      <stop offset="35%" style="stop-color:#48C9B0; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1F618D; stop-opacity:1" />
    </radialGradient>
    <radialGradient id="octopusSkin" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#D2B4DE;" />
      <stop offset="100%" style="stop-color:#8E44AD;" />
    </radialGradient>
    <linearGradient id="tentacleGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#C39BD3;" />
      <stop offset="100%" style="stop-color:#7D3C98;" />
    </linearGradient>
    <linearGradient id="goldGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FDEE8C;" />
      <stop offset="50%" style="stop-color:#F7DC6F;" />
      <stop offset="100%" style="stop-color:#F1C40F;" />
    </linearGradient>
    <radialGradient id="flameGradient" cx="50%" cy="30%" r="70%" fx="50%" fy="20%">
      <stop offset="0%" style="stop-color:#FFFFFF; stop-opacity:1" />
      <stop offset="25%" style="stop-color:#FFF352; stop-opacity:0.95" />
      <stop offset="55%" style="stop-color:#FFB84D; stop-opacity:0.85" />
      <stop offset="100%" style="stop-color:#FF6347; stop-opacity:0.75" />
    </radialGradient>
    <radialGradient id="jewelRed" cx="50%" cy="50%" r="50%">
        <stop offset="0%" style="stop-color:#F5B7B1;" />
        <stop offset="100%" style="stop-color:#E74C3C;" />
    </radialGradient>
    <radialGradient id="jewelBlue" cx="50%" cy="50%" r="50%">
        <stop offset="0%" style="stop-color:#AED6F1;" />
        <stop offset="100%" style="stop-color:#3498DB;" />
    </radialGradient>
    <filter id="candleGlow">
      <feGaussianBlur stdDeviation="2" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#bgGradient)" />

  <path d="M-50 0 L100 300 L130 300 L-20 0 Z" fill="rgba(220, 240, 255, 0.1)" transform="rotate(-20, 60, 0)"/>
  <path d="M100 0 L200 300 L220 300 L120 0 Z" fill="rgba(220, 240, 255, 0.08)" transform="rotate(10, 150, 0)"/>
  <path d="M250 0 L150 300 L170 300 L270 0 Z" fill="rgba(220, 240, 255, 0.09)" transform="rotate(25, 200, 0)"/>

  <path d="M0 300 Q60 250 120 270 T240 260 T300 280 V300 H0 Z" fill="#3E2723" opacity="0.5"/>
  <path d="M180 300 Q220 240 270 260 T300 250 V300 H180 Z" fill="#4E342E" opacity="0.4"/>

  <g id="background-bubbles">
    <circle cx="40" cy="220" r="6" fill="rgba(173, 216, 230, 0.3)" stroke="rgba(220,240,255,0.4)" stroke-width="1"/>
    <circle cx="70" cy="160" r="4" fill="rgba(173, 216, 230, 0.25)" stroke="rgba(220,240,255,0.3)" stroke-width="0.5"/>
    <circle cx="260" cy="190" r="7" fill="rgba(173, 216, 230, 0.35)" stroke="rgba(220,240,255,0.4)" stroke-width="1"/>
    <circle cx="230" cy="100" r="5" fill="rgba(173, 216, 230, 0.3)" stroke="rgba(220,240,255,0.3)" stroke-width="0.5"/>
  </g>

  <g id="octopus" transform="translate(150, 190)">
    <g id="back-and-side-tentacles">
        <path d="M-30 20 C-50 50 -70 80 -50 110 C-30 100 -10 90 0 80" stroke-width="12" stroke="url(#tentacleGradient)" fill="none" stroke-linecap="round" />
        <path d="M30 20 C50 50 70 80 50 110 C30 100 10 90 0 80" stroke-width="12" stroke="url(#tentacleGradient)" fill="none" stroke-linecap="round" />
        <path d="M-50 0 C-90 10 -120 50 -100 80 C-80 70 -60 60 -50 50" stroke-width="14" stroke="url(#tentacleGradient)" fill="none" stroke-linecap="round" />
        <path d="M50 0 C90 10 120 50 100 80 C80 70 60 60 50 50" stroke-width="14" stroke="url(#tentacleGradient)" fill="none" stroke-linecap="round" />
    </g>

    <path d="M0 -60 Q55 -75 65 -30 Q75 15 40 35 Q0 55 -40 35 Q-75 15 -65 -30 Q-55 -75 0 -60 Z" fill="url(#octopusSkin)" />
    
    <g id="left-eye" transform="translate(-25 -35)">
      <ellipse cx="0" cy="0" rx="12" ry="15" fill="#F8F8FF"/>
      <ellipse cx="0" cy="1" rx="7" ry="8" fill="#2C3E50"/>
      <circle cx="-1.5" cy="-1" r="2.5" fill="white" opacity="0.8"/>
    </g>
    <g id="right-eye" transform="translate(25 -35)">
      <ellipse cx="0" cy="0" rx="12" ry="15" fill="#F8F8FF"/>
      <ellipse cx="0" cy="1" rx="7" ry="8" fill="#2C3E50"/>
      <circle cx="-1.5" cy="-1" r="2.5" fill="white" opacity="0.8"/>
    </g>

    <g id="front-tentacles">
        <path d="M-20 30 C-40 60 -10 90 0 95 C10 90 40 60 20 30 Q0 40 -20 30 Z" stroke-width="15" stroke="url(#tentacleGradient)" fill="none" stroke-linecap="round" /> 
        <path d="M-20 5 Q-30 -35 -40 -65 C-45 -78 -40 -83" stroke-width="13" stroke="url(#tentacleGradient)" fill="none" stroke-linecap="round"/>
        <path d="M0 -5 Q0 -45 0 -75 C0 -95 0 -103" stroke-width="13" stroke="url(#tentacleGradient)" fill="none" stroke-linecap="round"/>
        <path d="M20 5 Q30 -35 40 -60 C45 -73 40 -78" stroke-width="13" stroke="url(#tentacleGradient)" fill="none" stroke-linecap="round"/>
    </g>
    
    <g id="crown" transform="translate(0, -68)">
      <path d="M-35 0 C-30 -6 -20 -6 L20 -6 C30 -6 35 0 A35 10 0 0 0 -35 0 Z" fill="url(#goldGradient)" stroke="#D4AC0D" stroke-width="1"/>
      <path d="M-4 -6 L0 -24 L4 -6 Z" fill="url(#goldGradient)" stroke="#D4AC0D" stroke-width="0.5"/>
      <path d="M-19 -6 L-15 -21 L-11 -6 Z" fill="url(#goldGradient)" stroke="#D4AC0D" stroke-width="0.5"/>
      <path d="M11 -6 L15 -21 L19 -6 Z" fill="url(#goldGradient)" stroke="#D4AC0D" stroke-width="0.5"/>
      <path d="M-30 -6 L-28 -19 L-26 -6 Z" fill="url(#goldGradient)" stroke="#D4AC0D" stroke-width="0.5"/>
      <path d="M26 -6 L28 -19 L30 -6 Z" fill="url(#goldGradient)" stroke="#D4AC0D" stroke-width="0.5"/>
      
      <circle cx="0" cy="-19" r="3" fill="url(#jewelBlue)" stroke="#2980B9" stroke-width="0.5"/>
      <circle cx="-15" cy="-16" r="2.5" fill="url(#jewelRed)" stroke="#C0392B" stroke-width="0.5"/>
      <circle cx="15" cy="-16" r="2.5" fill="url(#jewelRed)" stroke="#C0392B" stroke-width="0.5"/>
    </g>

    <g id="candle1" transform="translate(-40 -105) rotate(-20)">
        <rect x="-5" y="-22" width="10" height="28" fill="#FFF8DC" rx="3" ry="3" stroke="#F5DEB3" stroke-width="0.5"/>
        <line x1="0" y1="-22" x2="0" y2="-25" stroke="#4A4A4A" stroke-width="1"/>
        <g filter="url(#candleGlow)">
            <path d="M0 -26 Q5 -31 2 -36 Q0 -46 -2 -36 Q-5 -31 0 -26 Z" fill="url(#flameGradient)"/>
            <path d="M0 -26 Q3 -30 1 -34 Q0 -41 -1 -34 Q-3 -30 0 -26 Z" fill="rgba(255,255,255,0.6)" transform="scale(0.6) translate(0, -4)"/>
        </g>
    </g>
    <g id="candle2" transform="translate(0 -128) rotate(0)">
        <rect x="-5" y="-22" width="10" height="28" fill="#FFF8DC" rx="3" ry="3" stroke="#F5DEB3" stroke-width="0.5"/>
        <line x1="0" y1="-22" x2="0" y2="-25" stroke="#4A4A4A" stroke-width="1"/>
         <g filter="url(#candleGlow)">
            <path d="M0 -26 Q5 -31 2 -36 Q0 -46 -2 -36 Q-5 -31 0 -26 Z" fill="url(#flameGradient)"/>
            <path d="M0 -26 Q3 -30 1 -34 Q0 -41 -1 -34 Q-3 -30 0 -26 Z" fill="rgba(255,255,255,0.6)" transform="scale(0.6) translate(0, -4)"/>
        </g>
    </g>
    <g id="candle3" transform="translate(40 -100) rotate(20)">
        <rect x="-5" y="-22" width="10" height="28" fill="#FFF8DC" rx="3" ry="3" stroke="#F5DEB3" stroke-width="0.5"/>
        <line x1="0" y1="-22" x2="0" y2="-25" stroke="#4A4A4A" stroke-width="1"/>
         <g filter="url(#candleGlow)">
            <path d="M0 -26 Q5 -31 2 -36 Q0 -46 -2 -36 Q-5 -31 0 -26 Z" fill="url(#flameGradient)"/>
            <path d="M0 -26 Q3 -30 1 -34 Q0 -41 -1 -34 Q-3 -30 0 -26 Z" fill="rgba(255,255,255,0.6)" transform="scale(0.6) translate(0, -4)"/>
        </g>
    </g>
  </g>

  <g id="foreground-bubbles">
    <circle cx="90" cy="100" r="8" fill="rgba(173, 216, 230, 0.4)" stroke="rgba(220,240,255,0.5)" stroke-width="1.5"/>
    <circle cx="210" cy="240" r="9" fill="rgba(173, 216, 230, 0.45)" stroke="rgba(220,240,255,0.5)" stroke-width="1.5"/>
    <circle cx="140" cy="260" r="6" fill="rgba(173, 216, 230, 0.35)" stroke="rgba(220,240,255,0.4)" stroke-width="1"/>
     <circle cx="30" cy="80" r="5" fill="rgba(173, 216, 230, 0.3)" stroke="rgba(220,240,255,0.4)" stroke-width="1"/>
     <circle cx="270" cy="60" r="6" fill="rgba(173, 216, 230, 0.35)" stroke="rgba(220,240,255,0.4)" stroke-width="1"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini 2.5 Pro Preview 05-06 Player 2

Judge's Analysis

    Player 2's submission is both more creative and adheres more closely to the prompt.

    The octopus is clearly depicted with a crown and is underwater, juggling three lit candles, which are all well-rendered with thoughtful details.

    Player 1's submission lacks clarity in representing an octopus or the specified scene, making it less effective in meeting the prompt and visually less appealing.

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
13
Player 2
51
Rectangles

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

Player 1
7
Player 2
4
Circles

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

Player 1
1
Player 2
14
Ellipses

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

Player 1
Player 2
4
Lines

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

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

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

Player 1
5
Player 2
14

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
32

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
23

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
7
Player 2
13

Complexity Metrics

Path Commands

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

Player 1
26
Player 2
117
Max Group Nesting

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

Player 1
Player 2
2
Defs Elements

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

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