Back

SVG Drawing Match #2092

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Gravity-defying giraffe on roller skates juggling planets"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <radialGradient id="giraffe-fur" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#F7D2C4" stop-opacity="1"/>
      <stop offset="50%" stop-color="#F2C464" stop-opacity="1"/>
      <stop offset="100%" stop-color="#E7B964" stop-opacity="1"/>
    </radialGradient>
    <linearGradient id="planet-glow" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FFFFFF" stop-opacity="0.5"/>
      <stop offset="100%" stop-color="#FFFFFF" stop-opacity="1"/>
    </linearGradient>
    <pattern id="star-field" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="10" fill="#000000" fill-opacity="0.2"/>
      <circle cx="5" cy="5" r="1" fill="#FFFFFF" fill-opacity="0.5"/>
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#star-field)"/>
  <g transform="translate(150, 150)">
    <circle cx="0" cy="0" r="40" fill="url(#giraffe-fur)" transform="rotate(45)"/>
    <circle cx="0" cy="-20" r="10" fill="#FFFFFF" fill-opacity="0.5"/>
    <circle cx="0" cy="20" r="10" fill="#FFFFFF" fill-opacity="0.5"/>
    <path d="M -20, 0 L 20, 0 L 20, -20 L -20, -20 Z" fill="#F2C464" transform="rotate(45)"/>
    <circle cx="0" cy="40" r="10" fill="#F7D2C4" fill-opacity="0.5"/>
    <g transform="translate(0, -50)">
      <circle cx="-20" cy="0" r="10" fill="#87CEEB" fill-opacity="0.8"/>
      <circle cx="0" cy="0" r="10" fill="#FFC080" fill-opacity="0.8"/>
      <circle cx="20" cy="0" r="10" fill="#87CEEB" fill-opacity="0.8"/>
      <circle cx="-10" cy="-10" r="5" fill="#FFFFFF" fill-opacity="0.8"/>
      <circle cx="10" cy="-10" r="5" fill="#FFFFFF" fill-opacity="0.8"/>
      <circle cx="0" cy="10" r="5" fill="#FFFFFF" fill-opacity="0.8"/>
    </g>
    <g transform="translate(0, 50)">
      <circle cx="-20" cy="0" r="10" fill="url(#planet-glow)" fill-opacity="0.8"/>
      <circle cx="0" cy="0" r="10" fill="url(#planet-glow)" fill-opacity="0.8"/>
      <circle cx="20" cy="0" r="10" fill="url(#planet-glow)" fill-opacity="0.8"/>
    </g>
    <path d="M -30, -10 L 30, -10 L 30, 10 L -30, 10 Z" fill="#FFC080" transform="rotate(45)"/>
    <circle cx="0" cy="0" r="5" fill="#FFFFFF" fill-opacity="0.5"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="giraffeGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FFA500;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFE44D;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="skateGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#333;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#666;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="planetGrad1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#4169E1;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1E90FF;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="planetGrad2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FF4500;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF6347;stop-opacity:1" />
    </radialGradient>
  </defs>
  <g transform="translate(150,150)">
    <!-- Giraffe Body -->
    <path d="M0,0 Q50,-50 100,0 Q50,50 0,0" fill="url(#giraffeGrad)" transform="scale(2)"/>
    
    <!-- Neck -->
    <rect x="-20" y="-80" width="40" height="60" rx="20" fill="url(#giraffeGrad)" transform="rotate(30)"/>
    
    <!-- Head -->
    <circle cx="0" cy="-120" r="20" fill="#FF00FF" filter="url(#drop-shadow)"/>
    
    <!-- Mane -->
    <path d="M-30,-130 Q0,-100 30,-130" fill="#FF00FF" opacity="0.5"/>
    
    <!-- Skates -->
    <g transform="translate(0,80)">
      <rect x="-20" y="0" width="40" height="20" rx="10" fill="url(#skateGrad)"/>
      <circle cx="0" cy="30" r="10" fill="#666"/>
      <rect x="-5" y="40" width="10" height="20" fill="#666"/>
      <circle cx="-15" cy="20" r="3" fill="#FFF"/>
      <circle cx="15" cy="20" r="3" fill="#FFF"/>
    </g>
    
    <!-- Juggling Planets -->
    <g transform="translate(-40, -80)">
      <circle cx="0" cy="0" r="15" fill="url(#planetGrad1)" filter="url(#glow)"/>
      <circle cx="30" cy="-30" r="12" fill="url(#planetGrad2)" filter="url(#glow)"/>
      <path d="M60,-60 Q80,-30 100,-60" stroke="#FFF" stroke-width="2" fill="none"/>
      <circle cx="90" cy="-90" r="10" fill="#FFD700" filter="url(#glow)"/>
    </g>
    
    <!-- Stars -->
    <g transform="translate(-20, -20)">
      <circle cx="0" cy="0" r="3" fill="#FFF"/>
      <circle cx="20" cy="0" r="2" fill="#FFF" opacity="0.8"/>
      <circle cx="10" cy="-10" r="2.5" fill="#FFF" opacity="0.6"/>
    </g>
    
    <!-- Trails -->
    <path d="M-50,-100 Q-30,-50 0,0" stroke="#FFA500" stroke-width="4" opacity="0.5"/>
    <path d="M50,-100 Q30,-50 0,0" stroke="#FFA500" stroke-width="4" opacity="0.5"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's image more effectively captures the idea of a gravity-defying giraffe on roller skates juggling planets.

    The composition is dynamic, and the use of color and shapes clearly depicts the concept.

    Player 1's submission is less visually descriptive and lacks elements that directly relate to 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
19
Player 2
18
Rectangles

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

Player 1
2
Player 2
3
Circles

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

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

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

Player 1
3
Player 2
4

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
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
5
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
5

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