Back

SVG Drawing Match #1620

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Chameleon juggling colorful planets in space"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Space background with gradient -->
  <defs>
    <linearGradient id="spaceGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1a0f3c;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000000;stop-opacity:1" />
    </linearGradient>
    
    <!-- Chameleon skin gradient -->
    <linearGradient id="chameleonGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#32CD32;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00BFFF;stop-opacity:1" />
    </linearGradient>
    
    <!-- Planet gradients -->
    <linearGradient id="planet1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FF6B6B;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF8E8E;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="planet2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFE4C4;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="planet3" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#00BFFF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00CCFF;stop-opacity:1" />
    </linearGradient>
  </defs>

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

  <!-- Stars -->
  <g id="stars">
    <circle cx="45" cy="20" r="1" fill="white"/>
    <circle cx="80" cy="50" r="1" fill="white"/>
    <circle cx="140" cy="30" r="1" fill="white"/>
    <circle cx="200" cy="60" r="1" fill="white"/>
    <circle cx="260" cy="10" r="1" fill="white"/>
    <circle cx="110" cy="80" r="1" fill="white"/>
  </g>

  <!-- Chameleon body -->
  <path d="M150,150 L170,130 Q180,140 190,140 L190,160 Q180,160 170,170 L150,170" fill="url(#chameleonGrad)"/>

  <!-- Chameleon eyes -->
  <circle cx="165" cy="135" r="5" fill="white"/>
  <circle cx="165" cy="135" r="2" fill="black"/>
  <circle cx="185" cy="135" r="5" fill="white"/>
  <circle cx="185" cy="135" r="2" fill="black"/>

  <!-- Chameleon tail -->
  <path d="M150,170 Q140,180 130,180" fill="url(#chameleonGrad)"/>

  <!-- Planets -->
  <g id="planets">
    <!-- Planet 1 -->
    <circle cx="100" cy="100" r="20" fill="url(#planet1)"/>
    <path d="M100,100 L120,80 Q110,70 100,70" fill="none" stroke="white" stroke-width="1"/>
    
    <!-- Planet 2 -->
    <circle cx="200" cy="200" r="25" fill="url(#planet2)"/>
    <path d="M200,200 L220,180 Q210,170 200,170" fill="none" stroke="white" stroke-width="1"/>
    
    <!-- Planet 3 -->
    <circle cx="50" cy="250" r="30" fill="url(#planet3)"/>
    <path d="M50,250 L70,230 Q60,220 50,220" fill="none" stroke="white" stroke-width="1"/>
  </g>

  <!-- Orbits -->
  <ellipse cx="150" cy="150" rx="100" ry="80" fill="none" stroke="white" stroke-width="1" stroke-dasharray="4,4"/>
  <ellipse cx="150" cy="150" rx="70" ry="50" fill="none" stroke="white" stroke-width="1" stroke-dasharray="4,4"/>
  <ellipse cx="150" cy="150" rx="40" ry="25" fill="none" stroke="white" stroke-width="1" stroke-dasharray="4,4"/>

  <!-- Chameleon arms -->
  <path d="M170,130 Q180,140 190,140" fill="url(#chameleonGrad)"/>
  <path d="M130,170 Q140,160 150,160" fill="url(#chameleonGrad)"/>

  <!-- Trails -->
  <path d="M100,100 Q150,120 200,200" fill="none" stroke="white" stroke-width="2" stroke-dasharray="10,10"/>
  <path d="M200,200 Q250,180 50,250" fill="none" stroke="white" stroke-width="2" stroke-dasharray="10,10"/>
  <path d="M50,250 Q100,220 100,100" fill="none" stroke="white" stroke-width="2" stroke-dasharray="10,10"/>
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#F94144"/>
      <stop offset="100%" stop-color="#90BE6D"/>
    </radialGradient>
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#F9844A"/>
      <stop offset="100%" stop-color="#43AA8B"/>
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#F8961E"/>
      <stop offset="100%" stop-color="#4D908E"/>
    </radialGradient>
    <pattern id="chameleonSkin" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2.5" fill="#0077b6"/>
      <circle cx="2.5" cy="7.5" r="2.5" fill="#00b4d8"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="#282846"/>
  <circle cx="50" cy="100" r="30" fill="url(#planet1)"/>
  <circle cx="150" cy="200" r="40" fill="url(#planet2)"/>
  <circle cx="250" cy="120" r="20" fill="url(#planet3)"/>
  <path d="M100 150c20,-20 60,0 60,30c0,30 -30,30 -50,50c-10,10 -30,10 -40,0c-20,-20 0,-50 30,-40z" fill="url(#chameleonSkin)" stroke="#282846" stroke-width="2"/>
  <ellipse cx="120" cy="170" rx="15" ry="10" transform="rotate(-20 120 170)"  fill="#F9C74F"/>
  <ellipse cx="180" cy="180" rx="15" ry="10" transform="rotate(20 180 180)" fill="#90BE6D"/>
  <circle cx="150" cy="160" r="5" fill="black"/>
  <circle cx="160" cy="160" r="5" fill="black"/>
  <path d="M125 200c-5,-15 35,-15 30,0" stroke="#F94144" stroke-width="3" stroke-linecap="round"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 1

Judge's Analysis

    Player 1's image creatively depicts the chameleon with a clear sense of motion and interaction with the planets, adhering closely to the prompt.

    The use of dotted lines and varying planet sizes adds a dynamic and playful element, enhancing visual appeal.

    In contrast, Player 2's submission lacks clarity in depicting the juggling aspect, resulting in a less cohesive interpretation of the theme.

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
12
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
13
Player 2
7
Ellipses

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

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

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
2
Player 2
11

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

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
8
Max Group Nesting

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

Player 1
Player 2
Defs Elements

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

Player 1
5
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