Back

SVG Drawing Match #1244

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cosmic whale breaching through a starry sky, its tail made of galaxies"

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <linearGradient id="skyGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#000428"/>
      <stop offset="100%" stop-color="#004e92"/>
    </linearGradient>
    
    <radialGradient id="galaxyCore">
      <stop offset="70%" stop-color="transparent"/>
      <stop offset="100%" stop-color="#9d4edd"/>
    </radialGradient>

    <filter id="starGlow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

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

  <!-- Background Stars -->
  <g opacity="0.8">
    {Array(50).fill().map((_,i) => 
      `<circle cx="${Math.random()*300}" 
               cy="${Math.random()*300}" 
               r="${Math.random()*1.5}" 
               fill="#fff" 
               filter="url(#starGlow)"/>`
    ).join('')}
  </g>

  <!-- Galactic Tail -->
  <path d="M180 230 
           C210 180, 240 120, 160 80 
           S60 40, 40 100 
           Q30 150, 80 200" 
        fill="none" 
        stroke="url(#galaxyCore)" 
        stroke-width="35" 
        stroke-linecap="round"/>

  <!-- Whale Body -->
  <path d="M150 110 
           Q90 60, 50 120 
           C30 160, 40 220, 100 250 
           L200 250 
           C260 220, 270 160, 250 120 
           Q210 60, 150 110Z" 
        fill="#1a0933" 
        stroke="#4a148c" 
        stroke-width="2"/>

  <!-- Celestial Patterns -->
  <g transform="translate(100 200)">
    <circle cx="40" cy="30" r="15" fill="url(#galaxyCore)" opacity="0.7"/>
    {Array(8).fill().map((_,i) => 
      `<circle cx="${40 + Math.cos(i*0.785)*20}" 
              cy="${30 + Math.sin(i*0.785)*20}" 
              r="${1.5 + Math.random()*2}" 
              fill="#fff"/>`
    ).join('')}
  </g>

  <!-- Star Cluster Accents -->
  <g opacity="0.9">
    {Array(15).fill().map((_,i) => 
      `<path d="M${150 + Math.random()*80 -40} ${120 + Math.random()*80}
               l${Math.random()*4-2} ${Math.random()*4-2}
               m${-Math.random()*4+2} ${-Math.random()*4+2}
               l${Math.random()*4-2} ${Math.random()*4-2}"
            stroke="#fff" 
            stroke-width="0.8"/>`
    ).join('')}
  </g>

  <!-- Motion Trails -->
  <g stroke="#5a189a" opacity="0.4">
    <path d="M160 110 Q175 90 190 100" stroke-width="3"/>
    <path d="M140 130 Q155 110 170 120" stroke-width="2"/>
    <path d="M120 150 Q135 130 150 140" stroke-width="1.5"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="spaceGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#0B0B2D;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000000;stop-opacity:1" />
    </linearGradient>
    
    <pattern id="starPattern" x="0" y="0" width="100%" height="100%">
      <circle cx="50%" cy="50%" r="1" fill="white"/>
    </pattern>
    
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    
    <path id="whalePath" d="M100,200 Q150,180 200,160 Q220,140 250,130 L270,100 Q280,80 290,70 Q300,60 300,50 L300,0 Q300,40 290,60 T220,140 Q200,160 150,180 Q100,200 50,180 Q0,160 -20,140 L30,100 Q40,80 50,70 Q60,60 60,50 L60,0 Q60,40 50,70 T140,140 Q100,120 150,100 Q160,90 170,80 L180,50 Q190,40 200,30 Q210,20 220,10 L230,0 Q240,10 250,20 T270,70 Q280,80 290,90 Q300,100 300,110 L300,150 Q300,160 290,170 T250,190 Q220,200 200,190 Q180,180 150,170 Q120,160 100,150 L100,200 Z"/>
    
    <pattern id="galaxyTail" x="0" y="0" width="100%" height="100%">
      <path d="M0,0 Q50,-20 100,0 Q150,20 200,0 Q250,-20 300,0 Q350,20 400,0 Q450,-20 500,0 Q550,20 600,0 Q650,-20 700,0 Q750,20 800,0 Q850,-20 900,0 Q950,20 1000,0 Q1050,-20 1100,0 Q1150,20 1200,0 Q1250,-20 1300,0 Q1350,20 1400,0 Q1450,-20 1500,0 Q1550,20 1600,0 Q1650,-20 1700,0 Q1750,20 1800,0 Q1850,-20 1900,0 Q1950,20 2000,0" fill="#1a1a2c"/>
      <circle cx="400" cy="300" r="200" fill="#2d2d4e"/>
      <circle cx="400" cy="300" r="100" fill="#4a4a6c"/>
    </pattern>
  </defs>

  <rect width="100%" height="100%" fill="url(#spaceGradient)"/>

  <g id="stars">
    <rect width="100%" height="100%" fill="url(#starPattern)"/>
    <animate attributeName="opacity" from="1" to="0" dur="2s" repeatCount="indefinite"/>
  </g>

  <g transform="translate(0,0)">
    <path d="M0,0 L300,0 L150,300 Z" fill="url(#spaceGradient)"/>
    <animate attributeName="opacity" from="1" to="0.5" dur="4s" repeatCount="indefinite"/>
  </g>

  <g id="whale">
    <path d="M100,200 Q150,180 200,160 Q220,140 250,130 L270,100 Q280,80 290,70 Q300,60 300,50 L300,0 Q300,40 290,60 T220,140 Q200,160 150,180 Q100,200 50,180 Q0,160 -20,140 L30,100 Q40,80 50,70 Q60,60 60,50 L60,0 Q60,40 50,70 T140,140 Q100,120 150,100 Q160,90 170,80 L180,50 Q190,40 200,30 Q210,20 220,10 L230,0 Q240,10 250,20 T270,70 Q280,80 290,90 Q300,100 300,110 L300,150 Q300,160 290,170 T250,190 Q220,200 200,190 Q180,180 150,170 Q120,160 100,150 L100,200 Z" fill="#1a1a2c" filter="url(#glow)"/>
    
    <path d="M100,200 Q150,180 200,160 Q220,140 250,130 L270,100 Q280,80 290,70 Q300,60 300,50 L300,0 Q300,40 290,60 T220,140 Q200,160 150,180 Q100,200 50,180 Q0,160 -20,140 L30,100 Q40,80 50,70 Q60,60 60,50 L60,0 Q60,40 50,70 T140,140 Q100,120 150,100 Q160,90 170,80 L180,50 Q190,40 200,30 Q210,20 220,10 L230,0 Q240,10 250,20 T270,70 Q280,80 290,90 Q300,100 300,110 L300,150 Q300,160 290,170 T250,190 Q220,200 200,190 Q180,180 150,170 Q120,160 100,150 L100,200 Z" fill="#2d2d4e"/>
    
    <path d="M100,200 Q150,180 200,160 Q220,140 250,130 L270,100 Q280,80 290,70 Q300,60 300,50 L300,0 Q300,40 290,60 T220,140 Q200,160 150,180 Q100,200 50,180 Q0,160 -20,140 L30,100 Q40,80 50,70 Q60,60 60,50 L60,0 Q60,40 50,70 T140,140 Q100,120 150,100 Q160,90 170,80 L180,50 Q190,40 200,30 Q210,20 220,10 L230,0 Q240,10 250,20 T270,70 Q280,80 290,90 Q300,100 300,110 L300,150 Q300,160 290,170 T250,190 Q220,200 200,190 Q180,180 150,170 Q120,160 100,150 L100,200 Z" fill="#4a4a6c"/>
    
    <g id="tail">
      <rect x="200" y="100" width="100" height="200" fill="url(#galaxyTail)"/>
      <animateTransform attributeName="transform" type="rotate" from="0 200 100" to="360 200 100" dur="8s" repeatCount="indefinite"/>
    </g>
  </g>

  <animate attributeName="viewBox" from="0 0 300 300" to="0 0 300 300" dur="1s" repeatCount="indefinite"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 1

Judge's Analysis

    Player 1's image more clearly represents a whale with a discernible form and a creatively depicted tail that suggests a cosmic element.

    The colors and gradients used effectively evoke a starry sky setting, adhering closely to the prompt.

    Player 2's image lacks clarity and detail, making it difficult to interpret as a whale, and does not convey the cosmic theme as effectively.

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
10
Player 2
12
Rectangles

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

Player 1
1
Player 2
3
Circles

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

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

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

Player 1
4
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
1
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
4

Interactivity Metrics

Animations

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

Player 1
Player 2
4
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
1
Player 2
1

Complexity Metrics

Path Commands

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

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