Back

SVG Drawing Match #91

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A dragon knitting a rainbow scarf with clouds as knitting needles"

SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="rainbow" gradientUnits="userSpaceOnUse" x1="0" y1="150" x2="300" y2="150">
      <stop stop-color="#FF69B4" offset=".1667" />
      <stop stop-color="#FFFF00" offset=".3333" />
      <stop stop-color="#00FF00" offset=".5" />
      <stop stop-color="#0000FF" offset=".6666" />
      <stop stop-color="#8F0A1A" offset=".8333" />
    </linearGradient>
    <linearGradient id="sky" gradientUnits="userSpaceOnUse" x1="0" y1="0" x2="0" y2="300">
      <stop stop-color="#ADD8E6" offset=".5" />
      <stop stop-color="#456778" offset="1" />
    </linearGradient>
    <pattern id="cloud" width="30" height="20">
      <ellipse cx="15" cy="10" rx="10" ry="5" fill="#FFFFFF" />
    </pattern>
    <pattern id="scales" width="20" height="20">
      <circle cx="10" cy="10" r="5" fill="#5C0011" />
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#sky)" />
  <g>
    <path d="M100 200 Q 120 170 100 150" fill="none" stroke="#000000" stroke-width="3" />
    <path d="M160 140 Q 200 120 200 180" fill="#7A288A" stroke="none" />
    <ellipse cx="130" cy="160" rx="20" ry="10" fill="url(#scales)" />
    <ellipse cx="170" cy="150" rx="15" ry="15" fill="url(#scales)" />
    <path d="M200 120 Q 230 120 230 90" fill="#UBY1BF" stroke="none" />
  </g>
  <g transform="translate(120 180)">
    <rect x="0" y="0" width="60" height="5" fill="#964B00" rx="2.5" />
    <path d="M0 2.5 H 60 M 60 0 v 5" stroke="#964B00" stroke-width="5" stroke-linecap="round" />
  </g>
  <g>
    <rect x="0" y="250" width="20" height="20" fill="url(#cloud)" />
    <rect x="270" y="250" width="20" height="20" fill="url(#cloud)" />
    <line x1="10" y1="260" x2="290" y2="260" stroke="#964B00" stroke-width="3" />
    <path d="M0 240 Q 20 230 50 250" fill="#white" stroke="none" />
    <path d="M250 240 Q 280 230 300 250" fill="#white" stroke="none" />
  </g>
  <rect x="80" y="220" width="140" height="20" fill="url(#rainbow)" rx="10" />
  <g>
    <path d="M60 220 Q 100 200 80 180" fill="#7F5D8A" stroke="none" />
    <ellipse cx="80" cy="100" rx="40" ry="40" fill="url(#scales)" />
  </g>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradient for the dragon's body -->
    <linearGradient id="dragonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#33ccff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#3366ff;stop-opacity:1" />
    </linearGradient>
    <!-- Rainbow Gradient for the scarf -->
    <linearGradient id="rainbowGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:red;stop-opacity:1" />
      <stop offset="17%" style="stop-color:orange;stop-opacity:1" />
      <stop offset="34%" style="stop-color:yellow;stop-opacity:1" />
      <stop offset="51%" style="stop-color:green;stop-opacity:1" />
      <stop offset="68%" style="stop-color:blue;stop-opacity:1" />
      <stop offset="85%" style="stop-color:indigo;stop-opacity:1" />
      <stop offset="100%" style="stop-color:violet;stop-opacity:1" />
    </linearGradient>
    <!-- Cloud Pattern -->
    <pattern id="cloudPattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse">
      <circle cx="20" cy="20" r="20" fill="white" />
      <circle cx="50" cy="20" r="20" fill="white" />
      <circle cx="35" cy="35" r="25" fill="white" />
    </pattern>
  </defs>

  <!-- Dragon Body -->
  <g transform="translate(50,100)">
    <path d="M50,150 Q80,60 150,100 Q190,130 150,180 Q100,210 50,150" fill="url(#dragonGradient)" />
    <circle cx="50" cy="150" r="10" fill="#662d91" />
  </g>

  <!-- Dragon's Head -->
  <g transform="translate(200,80)">
    <ellipse cx="0" cy="0" rx="30" ry="20" fill="url(#dragonGradient)" />
    <circle cx="-10" cy="-5" r="3" fill="white" />
    <circle cx="-8" cy="-5" r="1" fill="black" />
    <path d="M5,0 Q15,-10 30,0" fill="none" stroke="#000" stroke-width="2" />
  </g>

  <!-- Dragon's Tail -->
  <g transform="rotate(30 150 180)">
    <ellipse cx="150" cy="210" rx="20" ry="10" fill="url(#dragonGradient)" />
    <path d="M132,210 Q140,240 150,210" fill="url(#dragonGradient)" />
  </g>

  <!-- Knitting Scarf -->
  <rect x="120" y="170" width="20" height="80" rx="10" ry="10" fill="url(#rainbowGradient)" />

  <!-- Cloud Needles -->
  <g transform="translate(90,150)">
    <rect x="0" y="0" width="60" height="10" fill="url(#cloudPattern)" />
    <path d="M0,0 Q30,-30 60,0" fill="none" stroke="#b3f0ff" stroke-width="3" />
  </g>
  <g transform="translate(120,100) rotate(25)">
    <rect x="0" y="0" width="60" height="10" fill="url(#cloudPattern)" />
    <path d="M0,0 Q30,-30 60,0" fill="none" stroke="#b3f0ff" stroke-width="3" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's submission better adheres to the prompt by depicting a more recognizable dragon form and incorporating clouds as knitting needles, which enhances the creativity of the concept.

    The composition is more cohesive and visually appealing, with a clearer depiction of the rainbow scarf.

    Player 1's image lacks clarity and coherence in representing the elements of 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
18
Player 2
16
Rectangles

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

Player 1
5
Player 2
3
Circles

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

Player 1
1
Player 2
6
Ellipses

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

Player 1
4
Player 2
2
Lines

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

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

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

Player 1
4
Player 2
5

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
2
Patterns

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
5

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

Complexity Metrics

Path Commands

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

Player 1
16
Player 2
12
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
4
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