Back

SVG Drawing Match #750

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A dragon made of clouds, breathing fire that turns into rainbows"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Cloud Dragon Body -->
  <circle cx="150" cy="100" r="80" fill="#cdd1d4" />
  <circle cx="200" cy="100" r="60" fill="#cdd1d4" />
  <circle cx="100" cy="120" r="50" fill="#cdd1d4" />
  
  <!-- Cloud Dragon Head -->
  <circle cx="250" cy="80" r="40" fill="#cdd1d4" />
  <ellipse cx="260" cy="60" rx="20" ry="30" fill="#cdd1d4" />
  <ellipse cx="240" cy="60" rx="15" ry="25" fill="#cdd1d4" />
  <circle cx="245" cy="50" r="5" fill="#ffffff" />
   
  <!-- Fire and Rainbows -->
  <path d="M150,200 Q130,140 100,200 Q80,240 50,200 Q70,150 100,200 Q120,240 150,200" fill="url(#fireGradient)" />
  <path d="M150,200 Q170,140 200,200 Q220,260 250,200 Q230,150 200,200 Q180,240 150,200" fill="url(#fireGradient)" />
  
  <!-- Defining the fire gradient -->
  <defs>
    <linearGradient id="fireGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(255,0,0);stop-opacity:1" />
      <stop offset="50%" style="stop-color:rgb(255,165,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
    </linearGradient>
  </defs>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Clouds -->
  <g id="clouds">
    <path fill="#C9E4CA" d="M60 40c0 10-10 20-20 20s-20-10-20-20 10-20 20-20 20 10 20 20Z" />
    <path fill="#B3D9C5" d="M120 40c0 15-15 30-30 30s-30-15-30-30 15-30 30-30 30 15 30 30Z" />
    <path fill="#E5F3E0" d="M180 40c0 20-20 40-40 40s-40-20-40-40 20-40 40-40 40 20 40 40Z" />
  </g>
  <!-- Dragon Body -->
  <g id="dragon-body">
    <path fill="#76B5E0" d="M120 100c-20 0-40-10-40-20s10-20 20-20 20 10 20 20-10 20-20 20Z" />
    <path fill="#5594B4" d="M150 120c-10 0-20-5-20-10s5-10 10-10 10 5 10 10-5 10-10 10Z" />
    <path fill="#3480B5" d="M180 140c-10 0-20-5-20-10s5-10 10-10 10 5 10 10-5 10-10 10Z" />
  </g>
  <!-- Dragon Head -->
  <g id="dragon-head">
    <path fill="#F6DC7A" d="M140 160c-10 0-20-5-20-10s5-10 10-10 10 5 10 10-5 10-10 10Z" />
    <path fill="#FFC107" d="M160 180c-5 0-10-2-10-5s2-5 5-5 5 2 5 5-2 5-5 5Z" />
    <path fill="#FF9800" d="M180 200c-5 0-10-2-10-5s2-5 5-5 5 2 5 5-2 5-5 5Z" />
  </g>
  <!-- Fire -->
  <g id="fire">
    <path fill="#FFC080" d="M180 220c-5 0-10-2-10-5s2-5 5-5 5 2 5 5-2 5-5 5Z" />
    <path fill="#FFA07A" d="M200 240c-5 0-10-2-10-5s2-5 5-5 5 2 5 5-2 5-5 5Z" />
    <path fill="#FF8C00" d="M220 260c-5 0-10-2-10-5s2-5 5-5 5 2 5 5-2 5-5 5Z" />
  </g>
  <!-- Rainbows -->
  <g id="rainbows">
    <linearGradient id="rainbow-grad" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0" stop-color="#FF0000" />
      <stop offset="0.2" stop-color="#FFA07A" />
      <stop offset="0.4" stop-color="#FFFF00" />
      <stop offset="0.6" stop-color="#00FF00" />
      <stop offset="0.8" stop-color="#0000FF" />
      <stop offset="1" stop-color="#800080" />
    </linearGradient>
    <path fill="url(#rainbow-grad)" d="M220 260c-5 0-10-2-10-5s2-5 5-5 5 2 5 5-2 5-5 5Z" />
    <path fill="url(#rainbow-grad)" d="M240 280c-5 0-10-2-10-5s2-5 5-5 5 2 5 5-2 5-5 5Z" />
    <path fill="url(#rainbow-grad)" d="M260 300c-5 0-10-2-10-5s2-5 5-5 5 2 5 5-2 5-5 5Z" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's image more creatively interprets the prompt with elements resembling clouds and a colorful transition from fire to rainbows.

    The composition is visually engaging and technically refined, effectively capturing the whimsy of a dragon made of clouds breathing fire that turns into rainbows.

    Player 1's submission is simpler and less detailed, lacking the imaginative execution seen in Player 2's work.

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
9
Player 2
15
Rectangles

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

Player 1
Player 2
Circles

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

Player 1
5
Player 2
Ellipses

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

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

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

Player 1
Player 2
5

Visual Effects Metrics

Gradients

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

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

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

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