Back

SVG Drawing Match #214

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cloud knitting stars with rainbows as yarn"

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="cloudGrad" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#f0f8ff"/>
      <stop offset="100%" stop-color="#c6e2ff"/>
    </radialGradient>
    <linearGradient id="rainbowGrad" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="16%" stop-color="#FF7F00"/>
      <stop offset="33%" stop-color="#FFFF00"/>
      <stop offset="50%" stop-color="#00FF00"/>
      <stop offset="66%" stop-color="#0000FF"/>
      <stop offset="83%" stop-color="#4B0082"/>
      <stop offset="100%" stop-color="#8F00FF"/>
    </linearGradient>
    <filter id="starGlow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="#1a0f37"/>

  <!-- Cloud body -->
  <g transform="translate(90 90)">
    <ellipse cx="60" cy="30" rx="60" ry="30" fill="url(#cloudGrad)"/>
    <circle cx="30" cy="30" r="30" fill="url(#cloudGrad)"/>
    <circle cx="90" cy="30" r="30" fill="url(#cloudGrad)"/>
    <circle cx="60" cy="10" r="25" fill="url(#cloudGrad)"/>
  </g>

  <!-- Knitting needles -->
  <g stroke-linecap="round">
    <path d="M85 110 L85 70" stroke="#d4af37" stroke-width="5" stroke-opacity="0.8"/>
    <path d="M125 110 L125 70" stroke="#d4af37" stroke-width="5" stroke-opacity="0.8"/>
  </g>

  <!-- Rainbow yarn -->
  <path d="M105 120 Q100 150 90 170 T70 200 T80 240" fill="none" 
        stroke="url(#rainbowGrad)" stroke-width="8" stroke-linecap="round"/>

  <!-- Stars -->
  <g filter="url(#starGlow)" stroke="#ffd700">
    <g transform="translate(100 180)">
      <polygon points="0,-8 2,-2 8,0 2,2 0,8 -2,2 -8,0 -2,-2" fill="#fffacd"/>
      <animateTransform attributeName="transform" type="rotate" values="0;360" dur="8s" repeatCount="indefinite"/>
    </g>
    <path d="M140 140 l-5-5 10 0-5 5z" fill="none" stroke-width="2"/>
    <polygon points="200 220, 205 215, 210 220, 205 225" fill="#ffd700"/>
    <polygon points="160 250, 165 245, 170 250, 165 255" fill="#ffd700"/>
  </g>

  <!-- Sparkle effects -->
  <g stroke="#ffffff" opacity="0.7">
    <path d="M50 50l3-3m-3 3l-3-3" stroke-width="2"/>
    <path d="M250 80l2-2m-2 2l-2-2" stroke-width="2"/>
    <path d="M180 40l1.5-1.5m-1.5 1.5l-1.5-1.5" stroke-width="2"/>
  </g>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="rainbow" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" style="stop-color: red; stop-opacity:1" />
      <stop offset="14%" style="stop-color: orange; stop-opacity:1" />
      <stop offset="28%" style="stop-color: yellow; stop-opacity:1" />
      <stop offset="42%" style="stop-color: green; stop-opacity:1" />
      <stop offset="56%" style="stop-color: blue; stop-opacity:1" />
      <stop offset="70%" style="stop-color: indigo; stop-opacity:1" />
      <stop offset="84%" style="stop-color: violet; stop-opacity:1" />
      <stop offset="100%" style="stop-color: purple; stop-opacity:1" />
    </linearGradient>
    <pattern id="cloudPattern" patternUnits="userSpaceOnUse" width="100" height="100">
      <rect width="100" height="100" fill="url(#rainbow)"/>
    </pattern>
  </defs>
  <g transform="translate(150, 150)">
    <g transform="rotate(-30)">
      <path d="M-50,50 Q0,100 50,50 T150,50" stroke="url(#rainbow)" stroke-width="8" fill="none"/>
    </g>
    <g transform="rotate(30)">
      <path d="M-50,50 Q0,100 50,50 T150,50" stroke="url(#rainbow)" stroke-width="8" fill="none"/>
    </g>
    <circle cx="0" cy="0" r="50" fill="url(#cloudPattern)" stroke="white" stroke-width="4"/>
  </g>
  <g>
    <circle cx="80" cy="80" r="5" fill="white"/>
    <circle cx="220" cy="80" r="5" fill="white"/>
    <circle cx="80" cy="220" r="5" fill="white"/>
    <circle cx="220" cy="220" r="5" fill="white"/>
    <circle cx="150" cy="150" r="5" fill="white"/>
    <circle cx="50" cy="150" r="5" fill="white"/>
    <circle cx="250" cy="150" r="5" fill="white"/>
  </g>
  <g transform="translate(150, 150)">
    <g transform="rotate(-30)">
      <path d="M-40,40 Q0,80 40,40 T80,40" stroke="url(#rainbow)" stroke-width="3" fill="none"/>
    </g>
    <g transform="rotate(30)">
      <path d="M-40,40 Q0,80 40,40 T80,40" stroke="url(#rainbow)" stroke-width="3" fill="none"/>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 1

Judge's Analysis

    Player 1's image effectively depicts a cloud using rainbow yarn to knit stars, adhering closely to the prompt.

    The inclusion of knitting needles and stars enhances the clarity of the concept.

    In contrast, Player 2's image lacks clear representation of a cloud or knitting, making it less aligned with 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
15
Player 2
13
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
3
Player 2
8
Ellipses

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

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

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

Player 1
7
Player 2
4
Groups

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

Player 1
5
Player 2
7

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
1
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
1

Interactivity Metrics

Animations

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

Player 1
1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
2
Player 2
6

Complexity Metrics

Path Commands

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

Player 1
23
Player 2
12
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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