Back

SVG Drawing Match #270

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An owl wearing a wizard hat, perched on a crescent moon, casting a spell"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bodyGrad" cx="50%" cy="50%" r="100%">
      <stop offset="0%" style="stop-color:#FFC19B;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#FFE6D1;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="eyeGrad" cx="50%" cy="50%" r="100%">
      <stop offset="0%" style="stop-color:#3D3D3D;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#666666;stop-opacity:1"/>
    </radialGradient>
    <linearGradient id="moonGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#4682B4;stop-opacity:1"/>
    </linearGradient>
  </defs>
  <g transform="translate(150,150)">
    <!-- Background -->
    <rect width="300" height="300" fill="url(#moonGrad)"/>
    
    <!-- Moon -->
    <path d="M-100,0 Q-50,50 0,0 Q50,-50 100,0 Q75,50 0,100 Q-75,50 0,0" fill="#87CEEB" stroke="#4682B4" stroke-width="2"/>
    
    <!-- Owl Body -->
    <path d="M0,-50 Q50,-50 100,-25 Q75,0 0,50 Q-75,0 -100,-25 Q-50,-50 0,-50" fill="url(#bodyGrad)" stroke="#FFA77A" stroke-width="2"/>
    
    <!-- Eyes -->
    <circle cx="-20" cy="-20" r="15" fill="url(#eyeGrad)">
      <filter id="eyeGlow">
        <feGaussianBlur stdDeviation="2" result="glow"/>
        <feMerge>
          <feMergeNode in="glow"/>
          <feMergeNode in="SourceGraphic"/>
        </feMerge>
      </filter>
    </circle>
    <circle cx="20" cy="-20" r="15" fill="url(#eyeGrad)" filter="url(#eyeGlow)"/>
    
    <!-- Beak -->
    <path d="M0,-30 L25,-40 L-25,-40 Z" fill="#996633"/>
    
    <!-- Wizard Hat -->
    <path d="M0,50 L0,100 L50,125 L-50,125 Z" fill="#6A1B9A" stroke="#4A148C" stroke-width="2"/>
    <rect x="-25" y="100" width="50" height="50" rx="10" fill="#6A1B9A"/>
    <circle cx="0" cy="125" r="5" fill="#FFD700"/>
    
    <!-- Spell Effects -->
    <circle cx="50" cy="-60" r="15" fill="url(#spellGrad)"/>
    <circle cx="-50" cy="-60" r="15" fill="url(#spellGrad)"/>
    <circle cx="0" cy="-80" r="15" fill="url(#spellGrad)"/>
  </g>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with stars -->
  <defs>
    <radialGradient id="nightSky" cx="50%" cy="50%" r="70%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#1a237e" />
      <stop offset="70%" stop-color="#0d1445" />
      <stop offset="100%" stop-color="#050829" />
    </radialGradient>
    
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="3" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#fffde7" />
      <stop offset="100%" stop-color="#cfd8dc" />
    </linearGradient>
    
    <linearGradient id="wizardHat" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#4a148c" />
      <stop offset="100%" stop-color="#7c4dff" />
    </linearGradient>
    
    <linearGradient id="owlBody" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#795548" />
      <stop offset="100%" stop-color="#5d4037" />
    </linearGradient>
    
    <linearGradient id="spellGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#00b0ff" />
      <stop offset="50%" stop-color="#651fff" />
      <stop offset="100%" stop-color="#ff4081" />
    </linearGradient>
    
    <pattern id="starPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="1" fill="white" opacity="0.8" />
      <circle cx="25" cy="20" r="0.8" fill="white" opacity="0.7" />
      <circle cx="40" cy="15" r="1.2" fill="white" opacity="0.9" />
      <circle cx="15" cy="35" r="0.6" fill="white" opacity="0.6" />
      <circle cx="35" cy="40" r="1" fill="white" opacity="0.8" />
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#nightSky)" />
  <rect x="0" y="0" width="300" height="300" fill="url(#starPattern)" />
  
  <!-- Larger stars -->
  <circle cx="50" cy="40" r="1.5" fill="white" opacity="0.9" />
  <circle cx="260" cy="70" r="1.8" fill="white" opacity="0.8" />
  <circle cx="200" cy="30" r="2" fill="white" opacity="0.9" />
  <circle cx="100" cy="60" r="1.2" fill="white" opacity="0.7" />
  
  <!-- Crescent Moon -->
  <path d="M180,180 a60,60 0 1,1 0,0.1 z" fill="url(#moonGradient)" />
  <path d="M180,180 a60,60 0 1,1 0,0.1 a50,50 0 1,0 0,-0.1 z" fill="url(#nightSky)" transform="translate(15, 0)" />
  
  <!-- Moon craters -->
  <circle cx="140" cy="170" r="5" fill="#e0e0e0" opacity="0.3" />
  <circle cx="160" cy="200" r="8" fill="#e0e0e0" opacity="0.3" />
  <circle cx="180" cy="160" r="6" fill="#e0e0e0" opacity="0.3" />
  
  <!-- Owl body -->
  <ellipse cx="150" cy="150" rx="40" ry="45" fill="url(#owlBody)" />
  
  <!-- Owl face -->
  <circle cx="150" cy="140" r="30" fill="#8d6e63" />
  
  <!-- Owl eyes -->
  <circle cx="137" cy="135" r="12" fill="#fff5e6" stroke="#5d4037" stroke-width="1" />
  <circle cx="163" cy="135" r="12" fill="#fff5e6" stroke="#5d4037" stroke-width="1" />
  <circle cx="137" cy="135" r="6" fill="#3e2723" />
  <circle cx="163" cy="135" r="6" fill="#3e2723" />
  <circle cx="139" cy="132" r="2" fill="white" />
  <circle cx="165" cy="132" r="2" fill="white" />
  
  <!-- Owl beak -->
  <path d="M145,150 l5,10 l5,-10 z" fill="#ff9800" />
  
  <!-- Owl eyebrows -->
  <path d="M125,125 q12,-15 24,0" fill="none" stroke="#5d4037" stroke-width="4" stroke-linecap="round" />
  <path d="M151,125 q12,-15 24,0" fill="none" stroke="#5d4037" stroke-width="4" stroke-linecap="round" />
  
  <!-- Owl wings -->
  <path d="M110,150 q-10,20 0,40 q20,-10 40,-5 q-20,-20 -40,-35 z" fill="#6d4c41" />
  <path d="M190,150 q10,20 0,40 q-20,-10 -40,-5 q20,-20 40,-35 z" fill="#6d4c41" />
  
  <!-- Owl feet on moon -->
  <path d="M140,195 l-5,10 l10,0 l-5,-10" fill="#ff9800" />
  <path d="M160,195 l-5,10 l10,0 l-5,-10" fill="#ff9800" />
  
  <!-- Wizard hat -->
  <path d="M150,110 l-35,-55 l70,0 z" fill="url(#wizardHat)" />
  <path d="M115,110 c0,0 70,0 70,0 c0,0 5,10 -35,10 c-40,0 -35,-10 -35,-10 z" fill="#673ab7" />
  
  <!-- Hat stars and moons -->
  <circle cx="150" cy="80" r="3" fill="#ffeb3b" filter="url(#glow)" />
  <path d="M130,95 l2,-5 l2,5 l5,-2 l-4,4 l4,4 l-5,-2 l-2,5 l-2,-5 l-5,2 l4,-4 l-4,-4 l5,2 z" fill="#ffeb3b" filter="url(#glow)" />
  <path d="M170,90 a3,3 0 1,1 0,0.1 z" fill="#ffeb3b" filter="url(#glow)" />
  <path d="M170,90 a3,3 0 1,1 0,0.1 a2.5,2.5 0 1,0 0,-0.1 z" fill="url(#wizardHat)" transform="translate(0.5, 0)" />
  
  <!-- Magic wand -->
  <line x1="190" y1="170" x2="215" y2="145" stroke="#e0e0e0" stroke-width="2" />
  <circle cx="220" cy="140" r="5" fill="#ffeb3b" filter="url(#glow)" />
  
  <!-- Magic spell particles and swirls -->
  <g filter="url(#glow)">
    <path d="M220,140 q20,-20 40,-10 q-10,20 10,40 q-30,0 -40,-10 q0,-10 -10,-20 z" fill="url(#spellGradient)" opacity="0.6">
      <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 220 140" to="360 220 140" dur="10s" repeatCount="indefinite" />
    </path>
    
    <circle cx="230" cy="120" r="3" fill="#00b0ff">
      <animate attributeName="cy" values="120;110;120" dur="2s" repeatCount="indefinite" />
      <animate attributeName="opacity" values="1;0.3;1" dur="2s" repeatCount="indefinite" />
    </circle>
    
    <circle cx="250" cy="140" r="4" fill="#651fff">
      <animate attributeName="cx" values="250;260;250" dur="3s" repeatCount="indefinite" />
      <animate attributeName="opacity" values="1;0.2;1" dur="3s" repeatCount="indefinite" />
    </circle>
    
    <circle cx="235" cy="160" r="2.5" fill="#ff4081">
      <animate attributeName="cy" values="160;170;160" dur="2.5s" repeatCount="indefinite" />
      <animate attributeName="opacity" values="0.8;0.4;0.8" dur="2.5s" repeatCount="indefinite" />
    </circle>
  </g>
</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 image more accurately adheres to the prompt, featuring an owl with a wizard hat perched on a crescent moon, actively casting a spell.

    The composition is visually appealing with a starry background that enhances the magical theme.

    Player 1's image lacks clear adherence to the prompt and is less detailed and visually cohesive.

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
43
Rectangles

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

Player 1
2
Player 2
2
Circles

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

Player 1
6
Player 2
24
Ellipses

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

Player 1
Player 2
1
Lines

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

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

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

Player 1
1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
21

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
7
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
1
Player 2
2

Complexity Metrics

Path Commands

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

Player 1
19
Player 2
69
Max Group Nesting

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

Player 1
Player 2
Defs Elements

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

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