Back

SVG Drawing Match #2493

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A dragon breathing fire shaped like musical notes."

SVG by Gemini 2.5 Pro Preview 05-06
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <!-- Gradients -->
        <linearGradient id="dragonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" stop-color="#2E7D32" /> <!-- Darker Green -->
            <stop offset="50%" stop-color="#4CAF50" /> <!-- Material Green -->
            <stop offset="100%" stop-color="#81C784" /> <!-- Lighter Green -->
        </linearGradient>
        <radialGradient id="fireNotesGradient" cx="0.4" cy="0.6" r="0.8">
            <stop offset="0%" stop-color="#FFFDE7" />   <!-- Creamy Yellow -->
            <stop offset="30%" stop-color="#FFCA28" />  <!-- Amber -->
            <stop offset="60%" stop-color="#FF8F00" /> <!-- Orange -->
            <stop offset="85%" stop-color="#E65100" /> <!-- Dark Orange/Red -->
            <stop offset="100%" stop-color="#BF360C" /> <!-- Deep Red/Brown -->
        </radialGradient>
        <linearGradient id="hornGradient" x1="0%" y1="0%" x2="0%" y2="100%">
            <stop offset="0%" stop-color="#F5E0C3" /> <!-- Light Beige -->
            <stop offset="100%" stop-color="#C8AD8F" /> <!-- Darker Beige/Tan -->
        </linearGradient>
        <radialGradient id="eyeGradient" cx="0.5" cy="0.5" r="0.5">
            <stop offset="0%" stop-color="#FFEB3B" /> <!-- Yellow -->
            <stop offset="70%" stop-color="#F9A825" /> <!-- Darker Yellow/Orange -->
            <stop offset="100%" stop-color="#E65100" /> <!-- Dark Orange -->
        </radialGradient>

        <!-- Musical Note Symbols (heads at 0,0, stems go up) -->
        <g id="quaverNote">
            <ellipse cx="0" cy="0" rx="3.5" ry="2.5" />
            <line x1="3.5" y1="0" x2="3.5" y2="-12" stroke-width="1.5" stroke="currentColor" />
            <path d="M3.5 -12 Q 7 -14, 10 -10 C 8 -8, 5 -9, 3.5 -12 Z" />
        </g>
        <g id="crotchetNote">
            <ellipse cx="0" cy="0" rx="4" ry="3" />
            <line x1="3.5" y1="0" x2="3.5" y2="-15" stroke-width="1.5" stroke="currentColor" />
        </g>
        <g id="beamedQuavers">
            <ellipse cx="-5" cy="0" rx="3.5" ry="2.5" />
            <line x1="-1.5" y1="0" x2="-1.5" y2="-12" stroke-width="1.5" stroke="currentColor" />
            <ellipse cx="5" cy="0" rx="3.5" ry="2.5" />
            <line x1="8.5" y1="0" x2="8.5" y2="-12" stroke-width="1.5" stroke="currentColor" />
            <rect x="-1.5" y="-13.5" width="10" height="3" fill="currentColor"/>
        </g>
        <g id="trebleClefSymbol" transform="scale(0.7)"> <!-- Scaled down slightly for better proportion -->
             <path d="M25,60 Q15,63 10,55 T10,45 Q10,35 20,32 T30,30 Q40,30 40,40 T35,50 M25,33 C25,15 45,20 45,5 M25,33 C15,-5 0,10 5,40 C10,70 25,75 40,60"
                  stroke-width="5" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
        </g>

        <!-- Filter for glow -->
        <filter id="fireGlowEffect" x="-50%" y="-50%" width="200%" height="200%">
            <feGaussianBlur in="SourceAlpha" stdDeviation="2.5" result="blur"/>
            <feOffset in="blur" dx="0" dy="0" result="offsetBlur"/>
            <feFlood flood-color="#FFB300" flood-opacity="0.6" result="floodColor"/> <!-- Amber glow -->
            <feComposite in="floodColor" in2="offsetBlur" operator="in" result="coloredBlur"/>
            <feMerge>
                <feMergeNode in="coloredBlur"/>
                <feMergeNode in="SourceGraphic"/>
            </feMerge>
        </filter>
    </defs>

    <!-- Background -->
    <rect width="300" height="300" fill="#181D31" /> <!-- Very Dark Indigo -->
    <circle cx="240" cy="60" r="35" fill="#F7D08A" opacity="0.3"/> <!-- Pale Yellow Moon -->
    <circle cx="240" cy="60" r="45" fill="#F7D08A" opacity="0.05"/> <!-- Moon glow -->
    <rect width="300" height="300" fill="url(#backgroundStars)" opacity="0.3"/>


    <!-- Dragon -->
    <g id="dragonFigure">
        <!-- Main Body/Neck -->
        <path d="M90,270 C 50,240 40,180 90,140 C 130,110 170,120 150,170 C 140,200 120,250 90,270 Z"
              fill="url(#dragonGradient)" stroke="#1B5E20" stroke-width="2.5"/>
        <!-- Tail -->
        <path d="M90,270 C 130,285 170,270 200,230 C 180,245 150,255 110,255 Z"
              fill="url(#dragonGradient)" stroke="#1B5E20" stroke-width="2"/>
        
        <!-- Head -->
        <g transform="translate(75 115) rotate(-15)"> <!-- Adjusted head position and rotation -->
            <path d="M0,0 C -25,-10 -45,10 -35,30 C -25,50 10,45 25,25 C 40,5 20,-20 0,0 Z"
                  fill="url(#dragonGradient)" stroke="#1B5E20" stroke-width="2.5" />
            <!-- Eye -->
            <circle cx="-15" cy="12" r="8" fill="url(#eyeGradient)" stroke="#3E2723" stroke-width="1"/>
            <circle cx="-18" cy="10" r="3" fill="#1A1A1A" />
            <circle cx="-19" cy="9" r="1.2" fill="white" opacity="0.9"/>
            <!-- Horns -->
            <path d="M5,-5 Q 20,-30 28,-20 Z" fill="url(#hornGradient)" stroke="#795548" stroke-width="1.5"/>
            <path d="M12,-10 Q 30,-35 35,-25 Z" fill="url(#hornGradient)" stroke="#795548" stroke-width="1.5"/>
            <!-- Nostril (subtle) -->
            <ellipse cx="-33" cy="23" rx="3" ry="1.5" fill="#1B5E20" opacity="0.7" transform="rotate(-25 -33 23)"/>
            <!-- Mouth Line -->
             <path d="M-38,28 C -20,35 0,32 10,25" stroke="#1B5E20" stroke-width="2" fill="none"/>
        </g>
         <!-- Optional wing stub -->
        <path d="M130,150 C 180,100 230,120 L210,145 C170,115 135,160 130,150 Z" fill="url(#dragonGradient)" opacity="0.7" stroke="#1B5E20" stroke-width="1.5" transform="rotate(10 140 150)"/>
    </g>

    <!-- Musical Fire Stream -->
    <!-- Head center was 75,115. Mouth path M-38,28. Rotation -15 deg. -->
    <!-- Px-Cx = (75-38)-75 = -38. Py-Cy = (115+28)-115 = 28. C=(75,115). a=-15 deg. -->
    <!-- P'x = 75 + (-38)cos(-15) - (28)sin(-15) = 75 + (-38)(0.966) - (28)(-0.259) = 75 - 36.708 + 7.252 = 45.544 -->
    <!-- P'y = 115 + (-38)sin(-15) + (28)cos(-15) = 115 + (-38)(-0.259) + (28)(0.966) = 115 + 9.842 + 27.048 = 151.89 -->
    <g id="musicalFire" transform="translate(46, 152)" fill="url(#fireNotesGradient)" filter="url(#fireGlowEffect)">
        <!-- Clef near mouth -->
        <use href="#trebleClefSymbol" x="10" y="-5" transform="scale(1.3) rotate(-25)" stroke="url(#fireNotesGradient)"/>

        <!-- Quavers -->
        <use href="#quaverNote" x="50" y="5" transform="scale(1.2) rotate(-30)"/>
        <use href="#quaverNote" x="95" y="-10" transform="scale(1.4) rotate(15)"/>
        <use href="#quaverNote" x="140" y="12" transform="scale(1.1) rotate(-15)"/>
        <use href="#quaverNote" x="190" y="-8" transform="scale(1.3) rotate(20)"/>
        <use href="#quaverNote" x="230" y="18" transform="scale(1) rotate(-25)"/>

        <!-- Crotchets -->
        <use href="#crotchetNote" x="70" y="-20" transform="scale(1.5) rotate(25)"/>
        <use href="#crotchetNote" x="115" y="18" transform="scale(1.3) rotate(-30)"/>
        <use href="#crotchetNote" x="165" y="-22" transform="scale(1.4) rotate(10)"/>
        <use href="#crotchetNote" x="210" y="8" transform="scale(1.2) rotate(30)"/>

        <!-- Beamed Notes -->
        <use href="#beamedQuavers" x="80" y="-35" transform="scale(1.3) rotate(5)"/>
        <use href="#beamedQuavers" x="155" y="-30" transform="scale(1.1) rotate(-8)"/>
        <use href="#beamedQuavers" x="200" y="-20" transform="scale(1.2) rotate(18)"/>

        <!-- Embers / Sparks (small filled circles) -->
        <circle cx="35" cy="-15" r="3" opacity="0.8" />
        <circle cx="75" cy="25" r="2.5" opacity="0.7" />
        <circle cx="120" cy="-40" r="3.5" opacity="0.9" />
        <circle cx="170" cy="20" r="2" opacity="0.6" />
        <circle cx="215" cy="-15" r="2.8" opacity="0.8" />
        <circle cx="240" cy="5" r="3" opacity="0.7" />
    </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="dragonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#4B0082;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#800080;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="fireGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FF4500;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFD700;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="noteGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#FFFFFF; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFD700; stop-opacity:1" />
    </radialGradient>
    <pattern id="scalePattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <path d="M0,10 L10,0" stroke="#663399" stroke-width="1"/>
    </pattern>
  </defs>
  
  <!-- Dragon Body -->
  <path d="M60,200 Q50,150 100,140 Q150,130 200,150 Q250,170 240,220 Q230,270 180,250 Q130,230 120,180 Q110,130 60,200"
        fill="url(#dragonGradient)" stroke="#4B0082" stroke-width="2" />
  
  <!-- Dragon Head -->
  <circle cx="60" cy="200" r="15" fill="#800080" stroke="#4B0082" stroke-width="2"/>
  <path d="M55,195 L50,190 L55,185" stroke="#4B0082" stroke-width="2" fill="none"/>
  <path d="M65,195 L70,190 L65,185" stroke="#4B0082" stroke-width="2" fill="none"/>
  
  <!-- Dragon Wings -->
  <path d="M100,140 Q80,100 150,120 Q220,140 200,180 Q150,160 100,140" fill="url(#scalePattern)" stroke="#663399" stroke-width="1"/>
  
  <!-- Flame Base -->
  <path d="M120,180 Q130,190 125,200 Q130,210 120,220" fill="url(#fireGradient)" stroke="#FF4500" stroke-width="1"/>
  
  <!-- Musical Note Flames -->
  <g>
    <path d="M120,220 C115,210 110,200 120,190" fill="url(#fireGradient)" stroke="#FF6347" stroke-width="1"/>
    <path d="M125,200 L130,195 Q135,190 130,185 L135,180" fill="url(#noteGradient)" stroke="#FFD700" stroke-width="1"/>
    <ellipse cx="135" cy="180" rx="5" ry="8" fill="#FFD700" stroke="#FF6347" stroke-width="1"/>
    
    <path d="M130,200 C125,210 120,220 130,230" fill="url(#fireGradient)" stroke="#FF4500" stroke-width="1"/>
    <path d="M135,230 L140,225 Q145,220 140,215 L145,210" fill="url(#noteGradient)" stroke="#FFD700" stroke-width="1"/>
    <ellipse cx="145" cy="210" rx="5" ry="8" fill="#FFD700" stroke="#FF6347" stroke-width="1"/>
    
    <path d="M140,190 C135,200 130,210 140,220" fill="url(#fireGradient)" stroke="#FF4500" stroke-width="1"/>
    <path d="M145,220 L150,215 Q155,210 150,205 L155,200" fill="url(#noteGradient)" stroke="#FFD700" stroke-width="1"/>
    <ellipse cx="155" cy="200" rx="5" ry="8" fill="#FFD700" stroke="#FF6347" stroke-width="1"/>
  </g>
  
  <!-- Tail -->
  <path d="M180,250 Q200,260 220,240 Q240,220 230,200" stroke="#4B0082" stroke-width="4" fill="none"/>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#fireGradient)" opacity="0.1"/>
  
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini 2.5 Pro Preview 05-06 Player 1

Judge's Analysis

    Player 1's submission effectively combines the dragon motif with fire shaped like musical notes, adhering well to the prompt and demonstrating creativity.

    The composition is clear and visually appealing, with a strong connection between the dragon and the fiery musical notes.

    Player 2's image is less clear in depicting a dragon and the fire's connection to musical notes is not as distinct, making it less aligned with 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
32
Player 2
18
Rectangles

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

Player 1
3
Player 2
1
Circles

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

Player 1
11
Player 2
1
Ellipses

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

Player 1
5
Player 2
3
Lines

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

Player 1
4
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
9
Player 2
13
Groups

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

Player 1
7
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
13
Player 2
17

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
20
Player 2
6

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
18
Player 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
43
Player 2
43
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

Player 1
9
Player 2
4
Use Elements

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

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