Back

SVG Drawing Match #586

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe knitting a rainbow scarf with clouds as yarn balls"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#87CEEB" />
      <stop offset="100%" stop-color="#ADD8E6" />
    </linearGradient>
    <linearGradient id="rainbowGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#FF0000" />
      <stop offset="16.666%" stop-color="#FF7F00" />
      <stop offset="33.333%" stop-color="#FFFF00" />
      <stop offset="50%" stop-color="#00FF00" />
      <stop offset="66.666%" stop-color="#0000FF" />
      <stop offset="83.333%" stop-color="#4B0082" />
      <stop offset="100%" stop-color="#8B00FF" />
    </linearGradient>
    <radialGradient id="sunGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FFD700" />
      <stop offset="100%" stop-color="#FFA500" />
    </radialGradient>
    <pattern id="cloudTexture" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="#FFFFFF" />
      <circle cx="8" cy="3" r="1.5" fill="#FFFFFF" />
      <circle cx="2" cy="7" r="1.5" fill="#FFFFFF" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <circle cx="250" cy="50" r="30" fill="url(#sunGradient)" />
  <g transform="translate(100, 150)">
    <path d="M0,0 Q50,30 0,60 L0,120 Q50,90 0,60 L0,0 Z" fill="#FFE4B5" />
    <circle cx="30" cy="130" r="20" fill="#8B4513" />
    <circle cx="30" cy="130" r="15" fill="#FFD700" />
    <rect x="10" y="120" width="40" height="20" fill="#FFD700" />
    <rect x="10" y="120" width="40" height="10" fill="#8B4513" />
    <circle cx="50" cy="130" r="10" fill="#FFD700" />
    <path d="M0,120 Q50,150 0,180 L0,240 Q50,210 0,180 L0,120 Z" fill="#FFE4B5" />
    <circle cx="30" cy="250" r="30" fill="#8B4513" />
    <path d="M30,250 L30,300" stroke="#8B4513" stroke-width="10" stroke-linecap="round" />
    <path d="M30,300 L0,280 M30,300 L60,280" stroke="#8B4513" stroke-width="10" stroke-linecap="round" />
  </g>
  <g transform="translate(150, 100)">
    <path d="M0,0 L200,0 L200,20 L0,20 Z" fill="url(#rainbowGradient)" />
    <path d="M200,0 L220,10 L200,20 Z" fill="url(#rainbowGradient)" />
  </g>
  <g transform="translate(50, 50)">
    <circle cx="0" cy="0" r="20" fill="url(#cloudTexture)" />
    <circle cx="30" cy="10" r="25" fill="url(#cloudTexture)" />
    <circle cx="60" cy="0" r="20" fill="url(#cloudTexture)" />
  </g>
  <g transform="translate(200, 50)">
    <circle cx="0" cy="0" r="20" fill="url(#cloudTexture)" />
    <circle cx="30" cy="10" r="25" fill="url(#cloudTexture)" />
    <circle cx="60" cy="0" r="20" fill="url(#cloudTexture)" />
  </g>
  <text x="50" y="290" font-family="Arial" font-size="20" fill="#FFFFFF">"A giraffe knitting a rainbow scarf with clouds as yarn balls"</text>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky background with gradient -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Ground -->
  <rect x="0" y="220" width="300" height="80" fill="#88aa88"/>
  
  <!-- Cloud yarn balls -->
  <g transform="translate(180,100)">
    <path d="M0 0 Q 20 20 40 0 Q 60 -20 80 0 Q 100 20 120 0 Q 140 -20 160 0 Q 180 20 200 0" fill="white" stroke="none"/>
    <path d="M60 -20 Q 80 -40 100 -20 Q 120 -40 140 -20 Q 160 -40 180 -20 Q 200 -40 220 -20" fill="white" stroke="none"/>
  </g>
  
  <!-- Giraffe -->
  <g transform="translate(50,180)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="40" ry="30" fill="#ffd669" stroke="#8b4513" stroke-width="2"/>
    <!-- Spots -->
    <circle cx="-20" cy="-10" r="8" fill="#8b4513"/>
    <circle cx="20" cy="-10" r="8" fill="#8b4513"/>
    <circle cx="-10" cy="10" r="8" fill="#8b4513"/>
    <circle cx="10" cy="10" r="8" fill="#8b4513"/>
    <!-- Neck -->
    <path d="M0 0 Q -20 -30 -40 -20" stroke="#8b4513" stroke-width="3" fill="none"/>
    <!-- Head -->
    <g transform="translate(-40,-20)">
      <circle cx="0" cy="0" r="15" fill="#ffd669" stroke="#8b4513" stroke-width="2"/>
      <circle cx="-8" cy="-5" r="3" fill="#000000"/>
      <circle cx="8" cy="-5" r="3" fill="#000000"/>
      <!-- Horns -->
      <path d="M-12 5 Q -15 10 -12 15" stroke="#8b4513" stroke-width="2" fill="none"/>
      <path d="M12 5 Q 15 10 12 15" stroke="#8b4513" stroke-width="2" fill="none"/>
    </g>
    <!-- Legs -->
    <line x1="-20" y1="30" x2="-30" y2="40" stroke="#8b4513" stroke-width="4"/>
    <line x1="20" y1="30" x2="30" y2="40" stroke="#8b4513" stroke-width="4"/>
  </g>
  
  <!-- Knitting needles -->
  <line x1="100" y1="160" x2="120" y2="140" stroke="#666666" stroke-width="2"/>
  <line x1="100" y1="160" x2="80" y2="140" stroke="#666666" stroke-width="2"/>
  
  <!-- Rainbow scarf -->
  <path d="M100 160 Q 150 130 200 160" stroke="url(#rainbowGradient)" stroke-width="8" fill="none"/>
  
  <!-- Cloud yarn in use -->
  <path d="M180 100 Q 200 90 220 100" fill="white" stroke="none"/>
  
  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#87CEEB"/>
      <stop offset="1" stop-color="#E0F6FF"/>
    </linearGradient>
    <linearGradient id="rainbowGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#FF0000"/>
      <stop offset="0.2" stop-color="#FFA500"/>
      <stop offset="0.4" stop-color="#FFFF00"/>
      <stop offset="0.6" stop-color="#008000"/>
      <stop offset="0.8" stop-color="#0000FF"/>
      <stop offset="1" stop-color="#4B0082"/>
    </linearGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's image better captures the whimsical concept of a giraffe knitting a rainbow scarf, as it clearly depicts a giraffe-like figure with knitting needles and a scarf.

    The composition is more cohesive, with the cloud elements suggesting the yarn balls, aligning more closely with the prompt.

    Player 1's image is more abstract and less effective in conveying the specific scenario described.

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
23
Player 2
21
Rectangles

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

Player 1
3
Player 2
2
Circles

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

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

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

Player 1
4
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
2
Patterns

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

Player 1
1
Player 2
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
13

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
15

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

Complexity Metrics

Path Commands

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

Player 1
27
Player 2
21
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
4
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
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