Back

SVG Drawing Match #142

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A tree with musical notes as leaves, swaying in a gentle breeze"

SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="treeGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#228B22"/>
      <stop offset="100%" stop-color="#006400"/>
    </linearGradient>
    <linearGradient id="leafGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#FF69B4"/>
      <stop offset="100%" stop-color="#FFB6C1"/>
    </linearGradient>
    <linearGradient id="breezeGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#ADD8E6"/>
      <stop offset="100%" stop-color="#F0F8FF"/>
    </linearGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#breezeGradient)"/>
  <g transform="translate(150, 250)">
    <path d="M-100,0 C-75,50 -25,100 0,100 25,100 75,50 100,0" fill="url(#treeGradient)"/>
    <path d="M-100,-50 C-75,0 -25,50 0,50 25,50 75,0 100,-50" fill="url(#treeGradient)"/>
    <path d="M-100,-100 C-75,-50 -25,0 0,0 25,0 75,-50 100,-100" fill="url(#treeGradient)"/>
  </g>
  <g transform="translate(150, 150)">
    <path d="M-20,-20 L-10,-10 L-5,0 L0,10 L5,0 L10,-10 L20,-20" fill="url(#leafGradient)" transform="rotate(30 0 0) translate(50 50)"/>
    <path d="M-20,-20 L-10,-10 L-5,0 L0,10 L5,0 L10,-10 L20,-20" fill="url(#leafGradient)" transform="rotate(60 0 0) translate(40 40)"/>
    <path d="M-20,-20 L-10,-10 L-5,0 L0,10 L5,0 L10,-10 L20,-20" fill="url(#leafGradient)" transform="rotate(90 0 0) translate(30 30)"/>
    <path d="M-20,-20 L-10,-10 L-5,0 L0,10 L5,0 L10,-10 L20,-20" fill="url(#leafGradient)" transform="rotate(120 0 0) translate(20 20)"/>
    <path d="M-20,-20 L-10,-10 L-5,0 L0,10 L5,0 L10,-10 L20,-20" fill="url(#leafGradient)" transform="rotate(150 0 0) translate(10 10)"/>
    <path d="M-20,-20 L-10,-10 L-5,0 L0,10 L5,0 L10,-10 L20,-20" fill="url(#leafGradient)" transform="rotate(180 0 0) translate(0 0)"/>
    <path d="M-20,-20 L-10,-10 L-5,0 L0,10 L5,0 L10,-10 L20,-20" fill="url(#leafGradient)" transform="rotate(210 0 0) translate(-10 -10)"/>
    <path d="M-20,-20 L-10,-10 L-5,0 L0,10 L5,0 L10,-10 L20,-20" fill="url(#leafGradient)" transform="rotate(240 0 0) translate(-20 -20)"/>
    <path d="M-20,-20 L-10,-10 L-5,0 L0,10 L5,0 L10,-10 L20,-20" fill="url(#leafGradient)" transform="rotate(270 0 0) translate(-30 -30)"/>
    <path d="M-20,-20 L-10,-10 L-5,0 L0,10 L5,0 L10,-10 L20,-20" fill="url(#leafGradient)" transform="rotate(300 0 0) translate(-40 -40)"/>
    <path d="M-20,-20 L-10,-10 L-5,0 L0,10 L5,0 L10,-10 L20,-20" fill="url(#leafGradient)" transform="rotate(330 0 0) translate(-50 -50)"/>
  </g>
</svg>
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="#B0E0E6"/>
    </linearGradient>
    <linearGradient id="trunkGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#8B4513"/>
      <stop offset="100%" stop-color="#A0522D"/>
    </linearGradient>
    <filter id="shadow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3"/>
      <feOffset dx="2" dy="2" result="offsetblur"/>
      <feMerge>
        <feMergeNode in="offsetblur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <rect x="0" y="250" width="300" height="50" fill="#32CD32"/>
  <path d="M150,250 C120,240 110,220 100,200 C90,180 80,160 70,140 C60,120 50,100 40,80 C30,60 20,40 10,20 L290,20 C280,40 270,60 260,80 C250,100 240,120 230,140 C220,160 210,180 200,200 C190,220 180,240 150,250Z" fill="#228B22" filter="url(#shadow)"/>
  <path d="M150,230 C140,220 130,210 120,200 C110,190 100,180 90,170 C80,160 70,150 60,140 C50,130 40,120 30,110 L270,110 C260,120 250,130 240,140 C230,150 220,160 210,170 C200,180 190,190 180,200 C170,210 160,220 150,230Z" fill="#2E8B57" filter="url(#shadow)"/>
  <path d="M150,250 Q160,220 170,190 Q180,160 190,130 Q200,100 210,70 Q220,40 230,10 L70,10 Q80,40 90,70 Q100,100 110,130 Q120,160 130,190 Q140,220 150,250Z" fill="url(#trunkGradient)" filter="url(#shadow)"/>
  <g transform="translate(150, 100)">
    <g class="leaf" transform="rotate(-10)">
      <path d="M0,0 Q10,-20 20,-30 Q30,-40 40,-50 Q50,-60 60,-70 L40,-90 Q30,-80 20,-70 Q10,-60 0,-50 Z" fill="#FFD700"/>
      <ellipse cx="30" cy="-60" rx="5" ry="2" fill="#FF4500" transform="rotate(45)"/>
    </g>
    <g class="leaf" transform="rotate(10) translate(50, -30)">
      <path d="M0,0 Q10,-20 20,-30 Q30,-40 40,-50 Q50,-60 60,-70 L40,-90 Q30,-80 20,-70 Q10,-60 0,-50 Z" fill="#FFD700"/>
      <ellipse cx="30" cy="-60" rx="5" ry="2" fill="#FF4500" transform="rotate(45)"/>
    </g>
    <g class="leaf" transform="rotate(-20) translate(-50, -30)">
      <path d="M0,0 Q10,-20 20,-30 Q30,-40 40,-50 Q50,-60 60,-70 L40,-90 Q30,-80 20,-70 Q10,-60 0,-50 Z" fill="#FFD700"/>
      <ellipse cx="30" cy="-60" rx="5" ry="2" fill="#FF4500" transform="rotate(45)"/>
    </g>
    <g class="leaf" transform="rotate(20) translate(80, -60)">
      <path d="M0,0 Q10,-20 20,-30 Q30,-40 40,-50 Q50,-60 60,-70 L40,-90 Q30,-80 20,-70 Q10,-60 0,-50 Z" fill="#FFD700"/>
      <ellipse cx="30" cy="-60" rx="5" ry="2" fill="#FF4500" transform="rotate(45)"/>
    </g>
    <g class="leaf" transform="rotate(-30) translate(-80, -60)">
      <path d="M0,0 Q10,-20 20,-30 Q30,-40 40,-50 Q50,-60 60,-70 L40,-90 Q30,-80 20,-70 Q10,-60 0,-50 Z" fill="#FFD700"/>
      <ellipse cx="30" cy="-60" rx="5" ry="2" fill="#FF4500" transform="rotate(45)"/>
    </g>
  </g>
  <animateTransform attributeName="transform" attributeType="XML" type="rotate" from="0 150 150" to="2 150 150" dur="5s" repeatCount="indefinite"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 1

Judge's Analysis

    Player 1's image creatively incorporates musical notes into the tree with a stylized design, capturing the essence of the prompt.

    The soft colors and abstract representation suggest a gentle breeze, enhancing visual appeal.

    Player 2's submission lacks clear representation of musical notes and the sense of movement, making Player 1's image a better fit for 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
15
Player 2
15
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
Player 2
Ellipses

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

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

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

Player 1
2
Player 2
6

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
9

Interactivity Metrics

Animations

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

Player 1
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
13
Player 2
11

Complexity Metrics

Path Commands

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

Player 1
83
Player 2
73
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
3
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