Back

SVG Drawing Match #1741

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A giraffe roller-skating through a cloud made of musical notes"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="sky-gradient" x1="0" y1="0" x2="300" y2="300">
      <stop offset="0%" color="#FFB6C1" />
      <stop offset="100%" color="#4B4B4B" />
    </linearGradient>
    <pattern id="cloud-pattern" patternUnits="userSpaceOnUse" width="100" height="100">
      <path d="M0 0 Q 50 20 100 0 Q 150 20 200 0 Q 250 -20 300 0" fill="white" />
    </pattern>
    <linearGradient id="giraffe-pattern" x1="0" y1="0" x2="300" y2="300">
      <stop offset="0%" color="#A52A2F" />
      <stop offset="100%" color="#3D3D3D" />
    </linearGradient>
  </defs>

  <rect width="300" height="300" fill="url(#sky-gradient)" />
  
  <!-- Cloud with musical notes -->
  <g transform="translate(100, 150) scale(1.5)">
    <circle r="50" fill="url(#cloud-pattern)" opacity="0.3" />
    <path d="M10 0 C 10 20 30 20 50 20 C 70 20 90 10 90 0 C 90 -30 70 -30 50 -50 C 30 -30 10 -30 10 -50 C 10 -70 30 -70 50 -70 C 70 -70 90 -50 90 -30 C 90 0 70 10 50 10 C 30 10 10 20 10 0" fill="#fff" opacity="0.4">
      <animate attributeName="opacity" from="0.4" to="0.2" dur="2s" repeatCount="indefinite" />
    </path>
    
    <!-- Musical notes -->
    <path d="M50 0 Q 60 30 70 0 Q 80 30 90 0 Q 100 30 110 0 Q 120 30 130 0" fill="#fff" />
    <path d="M50 10 Q 55 20 60 10" fill="#fff" />
    <path d="M70 10 Q 75 20 80 10" fill="#fff" />
    <path d="M90 10 Q 95 20 100 10" fill="#fff" />
    <path d="M110 10 Q 115 20 120 10" fill="#fff" />
    <path d="M130 10 Q 135 20 140 10" fill="#fff" />
  </g>

  <!-- Giraffe -->
  <g transform="translate(150 250) scale(0.5)">
    <ellipse cx="50" cy="50" rx="20" ry="30" fill="url(#giraffe-pattern)" />
    
    <!-- Legs -->
    <path d="M0 60 L0 100 L40 100 L40 60" fill="url(#giraffe-pattern)" />
    <path d="M20 60 L20 100 L60 100 L60 60" fill="url(#giraffe-pattern)" />
    <path d="M10 60 L10 100 L30 100 L30 60" fill="url(#giraffe-pattern)" />
    <path d="M30 60 L30 100 L50 100 L50 60" fill="url(#giraffe-pattern)" />
    
    <!-- Neck and head -->
    <path d="M50 30 Q 100 0 150 30" fill="url(#giraffe-pattern)" />
    <ellipse cx="150" cy="20" rx="10" ry="15" fill="url(#giraffe-pattern)" />
    <circle cx="145" cy="25" r="3" fill="black" />
    <circle cx="155" cy="25" r="3" fill="black" />
    <path d="M145 30 Q 150 32 155 30" fill="url(#giraffe-pattern)" />
    
    <!-- Roller skate wheels -->
    <circle cx="30" cy="100" r="10" fill="silver" />
    <circle cx="50" cy="100" r="10" fill="silver" />
    <circle cx="30" cy="100" r="5" fill="white" opacity="0.8" />
    <circle cx="50" cy="100" r="5" fill="white" opacity="0.8" />
  </g>

  <!-- Motion lines -->
  <g transform="translate(150 250) scale(0.5)">
    <path d="M0 100 Q 20 80 40 100 Q 60 80 80 100" opacity="0.2" stroke="white" stroke-width="2" />
    <path d="M10 100 Q 30 90 50 100 Q 70 90 90 100" opacity="0.3" stroke="white" stroke-width="2" />
    <path d="M20 100 Q 40 110 60 100 Q 80 110 100 100" opacity="0.2" stroke="white" stroke-width="2" />
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#89CFF0"/>
      <stop offset="100%" stop-color="#FFFFFF"/>
    </linearGradient>
    <linearGradient id="cloudGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFFFFF"/>
      <stop offset="100%" stop-color="#E0E0E0"/>
    </linearGradient>
    <linearGradient id="giraffeGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FF8C00"/>
    </linearGradient>
    <linearGradient id="noteGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF69B4"/>
      <stop offset="100%" stop-color="#FF1493"/>
    </linearGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="0" dy="4" stdDeviation="4" flood-color="#000000"/>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />

  <!-- Cloud of Musical Notes -->
  <g id="musicCloud" transform="translate(50,70)">
    <g fill="url(#noteGradient)" opacity="0.8">
      <path d="M40,20 Q50,0 60,20 T80,20 Q90,40 80,60 T60,60 Q50,40 40,60 T20,60 Q10,40 20,20 T40,20 Z"/>
      <path d="M100,40 Q110,20 120,40 T140,40 Q150,60 140,80 T120,80 Q110,60 100,80 T80,80 Q70,60 80,40 T100,40 Z" transform="translate(-30,10) scale(0.8) rotate(-20)"/>
      <path d="M60,60 Q70,40 80,60 T100,60 Q110,80 100,100 T80,100 Q70,80 60,100 T40,100 Q30,80 40,60 T60,60 Z" transform="translate(20, -10) scale(0.7) rotate(30)"/>
      <path d="M80,80 Q90,60 100,80 T120,80 Q130,100 120,120 T100,120 Q90,100 80,120 T60,120 Q50,100 60,80 T80,80 Z" transform="translate(-20,20) scale(0.6) rotate(15)"/>
    </g>
  </g>

  <!-- Giraffe Roller-Skating -->
  <g id="giraffe" filter="url(#shadow)" transform="translate(150,200)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="30" ry="15" fill="url(#giraffeGradient)"/>
    <!-- Neck -->
    <rect x="-5" y="-40" width="10" height="40" fill="url(#giraffeGradient)"/>
    <!-- Head -->
    <circle cx="0" cy="-50" r="7" fill="#FFD700"/>
    <!-- Eyes -->
    <circle cx="-2" cy="-52" r="1.5" fill="#000"/>
    <circle cx="2" cy="-52" r="1.5" fill="#000"/>
    <!-- Horns -->
    <polygon points="-3,-55 -5,-58 -1,-58" fill="#FF8C00"/>
    <polygon points="3,-55 5,-58 1,-58" fill="#FF8C00"/>
    <!-- Legs -->
    <g stroke="#FF8C00" stroke-width="2">
      <line x1="-15" y1="15" x2="-20" y2="30" />
      <line x1="15" y1="15" x2="20" y2="30" />
    </g>
    <!-- Wheels -->
    <g fill="#555" stroke="#333" stroke-width="1">
      <circle cx="-20" cy="30" r="5"/>
      <circle cx="20" cy="30" r="5"/>
    </g>
    <!-- Motion Lines -->
    <path d="M-25,25 Q-30,20 -35,25" stroke="#000" stroke-width="1" fill="none" opacity="0.5"/>
    <path d="M25,25 Q30,20 35,25" stroke="#000" stroke-width="1" fill="none" opacity="0.5"/>
  </g>

  <!-- Decorative Elements -->
  <g fill="#FF69B4" opacity="0.6">
    <circle cx="250" cy="50" r="5"/>
    <circle cx="270" cy="80" r="3"/>
    <circle cx="230" cy="110" r="4"/>
    <circle cx="260" cy="140" r="2"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's submission is more vibrant and visually appealing, with a clear depiction of a giraffe on roller skates.

    The colorful background and the integration of musical notes in the cloud enhance the creativity and adherence to the prompt.

    Player 1's image, while abstract and interesting, lacks the clarity and vibrant expression of the theme found in Player 2's work.

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
27
Player 2
22
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
7
Player 2
9
Ellipses

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

Player 1
2
Player 2
1
Lines

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

Player 1
Player 2
2
Polygons

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

Player 1
Player 2
2
Paths

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

Player 1
17
Player 2
6
Groups

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

Player 1
3
Player 2
6

Visual Effects Metrics

Gradients

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

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

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
3
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
57
Player 2
44
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