Back

SVG Drawing Match #1661

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A dragon reading glasses while knitting a scarf on a mountain peak"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Mountain peak -->
  <rect x="0" y="200" width="300" height="100" fill="#c2b280" />
  <!-- Dragon body -->
  <ellipse cx="150" cy="170" rx="50" ry="90" fill="#6e2c00" />
  <!-- Dragon head -->
  <circle cx="150" cy="150" r="30" fill="#6e2c00" />
  <!-- Dragon eyes -->
  <circle cx="140" cy="145" r="5" fill="white" />
  <circle cx="160" cy="145" r="5" fill="white" />
  <!-- Dragon glasses -->
  <rect x="135" y="140" width="30" height="5" fill="#444444" />
  <!-- Dragon scarf -->
  <path d="M140,180 Q150,200 160,180" fill="none" stroke="#ff3300" stroke-width="5" />
  <!-- Knitting needles -->
  <line x1="155" y1="180" x2="155" y2="195" stroke="#634a00" stroke-width="2" />
  <line x1="145" y1="185" x2="165" y2="185" stroke="#634a00" stroke-width="2" />
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient Sky -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300" >
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#1E90FF"/>
    </linearGradient>
    <linearGradient id="mountainGradient" x1="0" y1="0" x2="0" y2="200">
      <stop offset="0%" stop-color="#556B2F"/>
      <stop offset="100%" stop-color="#2E8B57"/>
    </linearGradient>
    <linearGradient id="dragonGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF4500"/>
      <stop offset="100%" stop-color="#FFD700"/>
    </linearGradient>
    <pattern id="scarfPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect width="20" height="20" fill="#FF69B4"/>
      <circle cx="5" cy="5" r="3" fill="#32CD32"/>
      <circle cx="15" cy="15" r="3" fill="#32CD32"/>
    </pattern>
  </defs>
  
  <!-- Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Mountain Peak -->
  <polygon points="150,50 250,250 50,250" fill="url(#mountainGradient)" />
  
  <!-- Dragon Body -->
  <ellipse cx="150" cy="180" rx="40" ry="20" fill="url(#dragonGradient)" />
  
  <!-- Dragon Head -->
  <circle cx="190" cy="160" r="15" fill="url(#dragonGradient)" />
  
  <!-- Dragon Eyes -->
  <circle cx="185" cy="155" r="3" fill="#000"/>
  <circle cx="195" cy="155" r="3" fill="#000"/>
  
  <!-- Reading Glasses -->
  <line x1="183" y1="155" x2="188" y2="155" stroke="#000" stroke-width="1"/>
  <line x1="192" y1="155" x2="197" y2="155" stroke="#000" stroke-width="1"/>
  <line x1="188" y1="155" x2="192" y2="155" stroke="#000" stroke-width="1"/>
  
  <!-- Dragon Wings -->
  <path d="M110,170 Q100,160 90,180" stroke="url(#dragonGradient)" stroke-width="2" fill="none"/>
  <path d="M190,170 Q200,160 210,180" stroke="url(#dragonGradient)" stroke-width="2" fill="none"/>
  
  <!-- Knitting Needles -->
  <line x1="160" y1="185" x2="140" y2="205" stroke="#8B4513" stroke-width="2"/>
  <line x1="160" y1="185" x2="180" y2="205" stroke="#8B4513" stroke-width="2"/>
  
  <!-- Scarf -->
  <path d="M140,205 Q150,215 160,205 T180,205" fill="url(#scarfPattern)" />
  
  <!-- Tail -->
  <path d="M130,190 Q120,200 110,190" stroke="url(#dragonGradient)" stroke-width="2" fill="none"/>
  
  <!-- Details on Mountain -->
  <path d="M150,50 L160,80 L140,80 Z" fill="#FFFFFF" opacity="0.6"/>
  <path d="M100,200 L110,220 L90,220 Z" fill="#FFFFFF" opacity="0.4"/>
  <path d="M200,200 L210,220 L190,220 Z" fill="#FFFFFF" opacity="0.4"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image more closely adheres to the prompt by depicting a creature resembling a dragon on a mountain peak, with knitting elements visible.

    The image is more visually appealing and technically detailed compared to Player 1's submission, which lacks clarity and fails to represent the prompt effectively.

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
21
Rectangles

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

Player 1
2
Player 2
2
Circles

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

Player 1
3
Player 2
5
Ellipses

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

Player 1
1
Player 2
1
Lines

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

Player 1
2
Player 2
5
Polygons

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

Player 1
Player 2
1
Paths

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

Player 1
1
Player 2
7
Groups

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
11

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
2
Player 2
21
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
Player 2
4
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