Back

SVG Drawing Match #1265

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A surreal moonlit octopus playing a grand piano in a desert"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background: Desert Night -->
  <rect width="300" height="300" fill="url(#starsGradient)" />
  <defs>
    <radialGradient id="starsGradient" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:darkblue;stop-opacity:1" />
      <stop offset="100%" style="stop-color:black;stop-opacity:1" />
    </radialGradient>
  </defs>
  
  <!-- Moon -->
  <circle cx="250" cy="50" r="30" fill="url(#moonGradient)" />
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:lightyellow;stop-opacity:1" />
      <stop offset="100%" style="stop-color:white;stop-opacity:0" />
    </radialGradient>
  </defs>

  <!-- Surreal Octopus -->
  <g transform="translate(140,150)">
    <path d="M0 0 C-15,-15 -30,-45 -20,-70 C10,-60 20,-80 40,-70 C50,-30 30,-10 0,0" fill="purple" />
    <path d="M0 0 C-15,15 -40,35 -70,35 C-55,15 -50,-15 -40, -30 C-30,-5 -10,-5 0,0" fill="violet" />
    <circle cx="2" cy="-10" r="8" fill="lightblue" />
    <circle cx="10" cy="2" r="3" fill="darkblue" />
  </g>

  <!-- Grand Piano -->
  <g transform="translate(100,200) scale(1.1)">
    <rect x="0" y="0" width="60" height="20" fill="black" stroke="white" stroke-width="3" />
    <polygon points="60,0 90,10 90,40 60,30" fill="black" stroke="white" stroke-width="3" />
    <rect x="20" y="20" width="40" height="5" fill="silver" />
    <line x1="40" y1="25" x2="40" y2="60" stroke="black" stroke-width="4" />
  </g>

  <!-- Desert Dunes -->
  <path d="M0,250 Q80,190 160,250 T300,250 V300 H0 Z" fill="sandybrown" />
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="octoGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#6B64FF;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#4A40E5;stop-opacity:1"/>
    </radialGradient>
    <linearGradient id="pianoGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#3A1E4A;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#6A4E8C;stop-opacity:1"/>
    </linearGradient>
    <pattern id="stars" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse">
      <circle cx="15" cy="15" r="1" fill="#FFF" opacity="0.5"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#stars)"/>
  <g transform="translate(150,150)">
    <circle cx="0" cy="-100" r="20" fill="#FFF" filter="url(#moonGlow)"/>
    <path d="M-100,50 Q0,0 100,50" fill="#6A4E8C" stroke="#4A40E5" stroke-width="2"/>
    <g transform="translate(-50,50)">
      <path d="M0,0 Q-20,-20 0,-40" fill="url(#octoGrad)" stroke="#6B64FF" stroke-width="2"/>
      <path d="M0,0 Q20,-20 0,-40" fill="url(#octoGrad)" stroke="#6B64FF" stroke-width="2"/>
    </g>
    <g transform="translate(0,20)">
      <rect x="-50" y="0" width="100" height="20" fill="url(#pianoGrad)" rx="10"/>
      <rect x="-40" y="20" width="80" height="40" fill="#4A40E5" rx="10"/>
      <path d="M-30,60 Q0,60 30,60" stroke="#FFF" stroke-width="2" fill="none"/>
      <path d="M-30,60 L-20,70 L-10,60" fill="#6B64FF"/>
      <path d="M10,60 L20,70 L30,60" fill="#6B64FF"/>
    </g>
    <g transform="translate(0,80)">
      <path d="M-50,0 Q0,-50 50,0" fill="#FFD700" opacity="0.3"/>
      <path d="M-30,-20 Q0,-30 30,-20" fill="#FFA500" opacity="0.3"/>
      <path d="M-10,-10 Q0,-20 10,-10" fill="#FF6B6B" opacity="0.3"/>
    </g>
    <g transform="translate(0,120)">
      <path d="M-70,0 Q0,-30 70,0" fill="#6B64FF" opacity="0.2"/>
      <path d="M-50,-15 Q0,-25 50,-15" fill="#4A40E5" opacity="0.2"/>
    </g>
  </g>
  <filter id="moonGlow" x="-20%" y="-20%" width="140%" height="140%">
    <feGaussianBlur stdDeviation="40" result="glow"/>
    <feMerge>
      <feMergeNode in="glow"/>
      <feMergeNode in="SourceGraphic"/>
    </feMerge>
  </filter>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's image more effectively captures the surreal and whimsical nature of the prompt with a recognizable moon, desert, and abstract representation of an octopus and a grand piano.

    The use of vibrant colors and clear elements enhances its visual appeal and adherence to the theme.

    Player 2's image, while creative, is less clear in depicting the specific elements of the prompt and lacks the same level of coherence in its composition.

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

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

Player 1
3
Player 2
3
Circles

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

Player 1
3
Player 2
2
Ellipses

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

Player 1
Player 2
Lines

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

Player 1
1
Player 2
Polygons

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

Player 1
1
Player 2
Paths

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

Player 1
3
Player 2
11
Groups

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

Player 1
2
Player 2
5

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
7

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
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
14
Player 2
24
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
2
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