Back

SVG Drawing Match #2193

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Rainbow forest with trees playing musical instruments"

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="1">
      <stop offset="0%" stop-color="#89CFF0"/>
      <stop offset="100%" stop-color="#FFFFFF"/>
    </linearGradient>
    <linearGradient id="groundGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#228B22"/>
      <stop offset="100%" stop-color="#006400"/>
    </linearGradient>
    <linearGradient id="rainbowGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF0000"/>
      <stop offset="16.6%" stop-color="#FF7F00"/>
      <stop offset="33.3%" stop-color="#FFFF00"/>
      <stop offset="50%" stop-color="#00FF00"/>
      <stop offset="66.6%" stop-color="#0000FF"/>
      <stop offset="83.3%" stop-color="#4B0082"/>
      <stop offset="100%" stop-color="#8F00FF"/>
    </linearGradient>
    <pattern id="leavesPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="3" fill="url(#rainbowGradient)" />
    </pattern>
    <linearGradient id="instrumentGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FF8C00"/>
    </linearGradient>
    <pattern id="notesPattern" patternUnits="userSpaceOnUse" width="15" height="15">
      <path d="M5,0 L6,2 L8,3 L6,4 L5,6 L4,4 L2,3 L4,2 Z" fill="#000000"/>
    </pattern>
  </defs>
  <!-- Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <!-- Ground -->
  <rect y="220" width="300" height="80" fill="url(#groundGradient)" />
  <!-- Tree Guitar -->
  <g transform="translate(60,200)">
    <!-- Guitar Body -->
    <ellipse cx="0" cy="-60" rx="30" ry="45" fill="url(#instrumentGradient)" stroke="#654321" stroke-width="2"/>
    <!-- Guitar Neck -->
    <rect x="-5" y="-105" width="10" height="45" fill="#8B4513"/>
    <!-- Fretboard -->
    <line x1="0" y1="-105" x2="0" y2="-60" stroke="#FFFFFF" stroke-width="1"/>
    <!-- Strings -->
    <line x1="-5" y1="-105" x2="-5" y2="-60" stroke="#FFFFFF" stroke-width="0.5"/>
    <line x1="0" y1="-105" x2="0" y2="-60" stroke="#FFFFFF" stroke-width="0.5"/>
    <line x1="5" y1="-105" x2="5" y2="-60" stroke="#FFFFFF" stroke-width="0.5"/>
    <!-- Leaves as sound holes -->
    <circle cx="0" cy="-60" r="5" fill="url(#leavesPattern)" stroke="#000000" stroke-width="0.5"/>
  </g>
  <!-- Tree Drum -->
  <g transform="translate(150,220)">
    <!-- Drum Body -->
    <circle cx="0" cy="-50" r="30" fill="url(#rainbowGradient)" stroke="#000000" stroke-width="2"/>
    <!-- Drum Sticks as Branches -->
    <line x1="0" y1="-50" x2="-20" y2="-80" stroke="#8B4513" stroke-width="4"/>
    <line x1="0" y1="-50" x2="20" y2="-80" stroke="#8B4513" stroke-width="4"/>
    <!-- Drum Heads -->
    <ellipse cx="-20" cy="-80" rx="5" ry="10" fill="#FFFFFF" stroke="#000000" stroke-width="1"/>
    <ellipse cx="20" cy="-80" rx="5" ry="10" fill="#FFFFFF" stroke="#000000" stroke-width="1"/>
    <!-- Leaves as Resonators -->
    <path d="M-25,-85 Q-20,-90 -15,-85" stroke="url(#leavesPattern)" stroke-width="2" fill="none"/>
    <path d="M15,-85 Q20,-90 25,-85" stroke="url(#leavesPattern)" stroke-width="2" fill="none"/>
  </g>
  <!-- Tree Violin -->
  <g transform="translate(240,200)">
    <!-- Violin Body -->
    <path d="M0,-60 C-25,-30 -25,30 0,60 C25,30 25,-30 0,-60 Z" fill="url(#rainbowGradient)" stroke="#000000" stroke-width="2"/>
    <!-- F-holes -->
    <path d="M-10,-20 Q-8,-15 -10,-10 Q-12,-15 -10,-20 Z" fill="#FFFFFF" stroke="#000000" stroke-width="0.5"/>
    <path d="M10,-20 Q8,-15 10,-10 Q12,-15 10,-20 Z" fill="#FFFFFF" stroke="#000000" stroke-width="0.5"/>
    <!-- Violin Neck as Branch -->
    <rect x="-2" y="-60" width="4" height="40" fill="#8B4513"/>
    <!-- Strings -->
    <line x1="-1" y1="-60" x2="-1" y2="0" stroke="#FFFFFF" stroke-width="0.5"/>
    <line x1="1" y1="-60" x2="1" y2="0" stroke="#FFFFFF" stroke-width="0.5"/>
    <!-- Leaves as Tuning Pegs -->
    <circle cx="-1" cy="-60" r="1.5" fill="url(#leavesPattern)" stroke="#000000" stroke-width="0.3"/>
    <circle cx="1" cy="-60" r="1.5" fill="url(#leavesPattern)" stroke="#000000" stroke-width="0.3"/>
  </g>
  <!-- Musical Notes -->
  <g>
    <use href="#notesPattern" x="80" y="50" transform="scale(0.8)"/>
    <use href="#notesPattern" x="120" y="80" transform="scale(1.2) rotate(45)"/>
    <use href="#notesPattern" x="200" y="40" transform="scale(1) rotate(-30)"/>
    <use href="#notesPattern" x="250" y="90" transform="scale(0.6)"/>
  </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="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#E0FFFF;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="treeGradient1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FF69B4;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF1493;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="treeGradient2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#98FB98;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#87CE23;stop-opacity:1" />
    </radialGradient>
    <radialGradient id="treeGradient3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#4169E1;stop-opacity:1" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Tree 1 -->
  <g transform="translate(50,200)">
    <rect width="20" height="80" fill="#8B4513"/>
    <circle cx="10" cy="-70" r="40" fill="url(#treeGradient1)"/>
    <path d="M0,0 L-30,-40 L30,-40 Z" fill="#FFD700"/>
  </g>
  
  <!-- Tree 2 -->
  <g transform="translate(150,180)">
    <rect width="20" height="100" fill="#8B4513"/>
    <circle cx="10" cy="-80" r="45" fill="url(#treeGradient2)"/>
    <path d="M0,0 L-40,-50 L40,-50 Z" fill="#FFA07A"/>
  </g>
  
  <!-- Tree 3 -->
  <g transform="translate(250,220)">
    <rect width="20" height="90" fill="#8B4513"/>
    <circle cx="10" cy="-75" r="42" fill="url(#treeGradient3)"/>
    <path d="M0,0 L-35,-45 L35,-45 Z" fill="#9370DB"/>
  </g>
  
  <!-- Instruments -->
  <g transform="translate(100,150)">
    <path d="M0,0 L50,0 L45,-20 L5,-20 Z" fill="#FF6B6B" transform="rotate(30)"/>
    <rect x="30" y="-10" width="20" height="50" fill="#CD8500"/>
  </g>
  
  <g transform="translate(200,170)">
    <rect x="0" y="0" width="60" height="40" rx="20" fill="#87CEEB"/>
    <rect x="20" y="10" width="20" height="20" fill="#696969"/>
  </g>
  
  <g transform="translate(150,120)">
    <path d="M0,0 Q50,-30 100,0" stroke="#FFD700" stroke-width="4" fill="none"/>
    <rect x="40" y="-20" width="20" height="40" fill="#FFD700"/>
  </g>
  
  <g transform="translate(80,140)">
    <path d="M0,0 L50,0 Q60,-20 50,-40 L0,-40 Z" fill="#FF6B6B"/>
    <path d="M25,-50 Q50,-60 75,-50" stroke="#FF6B6B" stroke-width="3" fill="none"/>
  </g>
  
  <!-- Animated elements -->
  <g>
    <circle cx="120" cy="130" r="5" fill="#FFD700">
      <animate attributeName="cx" from="120" to="130" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="180" cy="160" r="5" fill="#FFD700">
      <animate attributeName="cy" from="160" to="170" dur="2s" repeatCount="indefinite"/>
    </circle>
    <rect x="220" y="150" width="10" height="30" fill="#FFD700">
      <animateTransform type="rotate" from="0" to="360" dur="3s" repeatCount="indefinite"/>
    </rect>
  </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 submission creatively interprets the concept of a 'rainbow forest with trees playing musical instruments' with vibrant, varied colors and abstract forms that suggest musical elements.

    This image displays strong adherence to the prompt with a playful and imaginative approach.

    In contrast, Player 1's image lacks the vibrant forest or musical elements, appearing more simplistic and less aligned with 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
26
Player 2
21
Rectangles

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

Player 1
4
Player 2
9
Circles

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

Player 1
5
Player 2
5
Ellipses

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

Player 1
3
Player 2
Lines

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

Player 1
8
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
6
Player 2
7
Groups

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

Player 1
4
Player 2
8

Visual Effects Metrics

Gradients

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

Player 1
4
Player 2
4
Patterns

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
8

Interactivity Metrics

Animations

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

Player 1
Player 2
3
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
7
Player 2
8

Complexity Metrics

Path Commands

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

Player 1
25
Player 2
26
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
6
Player 2
4
Use Elements

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

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