Back

SVG Drawing Match #905

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal: A floating island with a giant, sleeping cat and tiny trees"

SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#E0FFFF"/>
    </linearGradient>
    <linearGradient id="groundGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ADD8E6"/>
      <stop offset="100%" stop-color="#8FBC8F"/>
    </linearGradient>
    <pattern id="catPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <rect width="10" height="10" fill="#F0E68C" />
      <circle cx="5" cy="5" r="3" fill="#F5DEB3" />
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="200" fill="url(#skyGradient)"/>
  <path d="M0 200 Q150 150 300 200 T300 300 0 300" fill="url(#groundGradient)"/>
  <ellipse cx="150" cy="180" rx="80" ry="30" fill="#A9A9A9" />
  <ellipse cx="150" cy="170" rx="75" ry="25" fill="#FFFFFF" />
  <ellipse cx="150" cy="170" rx="60" ry="20" fill="#E6E6FA" />
  <ellipse cx="140" cy="160" rx="10" ry="5" fill="#000000" />
  <ellipse cx="160" cy="160" rx="10" ry="5" fill="#000000" />
  <path d="M130 175 Q145 185 160 175" stroke="#000000" stroke-width="2" fill="none"/>
  <path d="M150 185 Q155 195 160 185" stroke="#000000" stroke-width="2" fill="none"/>
  <rect x="140" y="190" width="20" height="10" fill="#000000" />
  <g transform="translate(100, 150)">
    <circle cx="0" cy="0" r="10" fill="#228B22" />
    <circle cx="20" cy="0" r="10" fill="#228B22" />
    <circle cx="40" cy="0" r="10" fill="#228B22" />
  </g>
  <g transform="translate(200, 150)">
    <circle cx="0" cy="0" r="10" fill="#228B22" />
    <circle cx="20" cy="0" r="10" fill="#228B22" />
    <circle cx="40" cy="0" r="10" fill="#228B22" />
  </g>
  <rect x="140" y="195" width="20" height="20" fill="url(#catPattern)" />
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky background with gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#8B5CF6;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#EC4899;stop-opacity:1" />
    </linearGradient>
    
    <!-- Island grass gradient -->
    <linearGradient id="grassGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#88BB78;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#45A049;stop-opacity:1" />
    </linearGradient>
    
    <!-- Cat fur gradient -->
    <linearGradient id="furGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#F3F4F6;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#374151;stop-opacity:1" />
    </linearGradient>
    
    <!-- Shadow effect -->
    <filter id="shadow">
      <feDropShadow dx="0" dy="8" stdDeviation="4" flood-color="rgba(0,0,0,0.3)"/>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>

  <!-- Floating island -->
  <g transform="translate(100,100)">
    <path d="M0 0 Q150 50 300 0 Q230 -30 150 -60 Q70 -30 0 0" 
          fill="url(#grassGradient)" filter="url(#shadow)"/>
  </g>

  <!-- Giant cat -->
  <g transform="translate(120,170)">
    <!-- Cat body -->
    <path d="M0 0 Q60 -20 120 0 Q150 20 90 80 L60 100 L30 80 Q0 20 -30 0 Z"
          fill="url(#furGradient)"/>
    <!-- Cat head -->
    <path d="M50 20 Q70 0 90 20 Q110 40 80 60 L60 40 L40 60 Q20 40 30 20 Z"
          fill="url(#furGradient)"/>
    <!-- Cat ears -->
    <path d="M70 -20 L80 -40 L60 -20" fill="url(#furGradient)"/>
    <!-- Cat eyes -->
    <path d="M55 30 L65 35" stroke="white" stroke-width="2"/>
    <path d="M65 30 L55 35" stroke="white" stroke-width="2"/>
  </g>

  <!-- Tiny trees -->
  <g transform="translate(180,190)">
    <!-- Tree 1 -->
    <path d="M0 0 L10 -20 L-10 -20 Z" fill="#2D3748"/>
    <circle cx="0" cy="-30" r="2" fill="#2D3748"/>
    <!-- Tree 2 -->
    <path d="M20 0 L30 -20 L10 -20 Z" fill="#2D3748"/>
    <circle cx="20" cy="-30" r="2" fill="#2D3748"/>
  </g>

  <!-- Birds -->
  <path d="M100 50 L120 40 L110 30" fill="none" stroke="#2D3748" stroke-width="2"/>
  <path d="M200 80 L220 70 L210 60" fill="none" stroke="#2D3748" stroke-width="2"/>

  <!-- Crescent moon -->
  <g transform="translate(250,50)">
    <circle cx="0" cy="0" r="20" fill="none" stroke="#FCD116" stroke-width="4"/>
    <path d="M-10 0 Q0 -10 10 0" fill="#FCD116"/>
  </g>

  <!-- Stars -->
  <circle cx="50" cy="50" r="2" fill="white"/>
  <circle cx="80" cy="70" r="2" fill="white"/>
  <circle cx="120" cy="40" r="2" fill="white"/>
  <circle cx="160" cy="60" r="2" fill="white"/>
  <circle cx="200" cy="30" r="2" fill="white"/>

  <!-- Cat tail -->
  <path d="M140 160 Q160 140 180 140" stroke="url(#furGradient)" stroke-width="4" fill="none"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's submission presents a more surreal and visually appealing depiction with a floating island and a creatively abstract representation of a sleeping cat.

    The use of colors and shapes creates a dreamlike atmosphere, adhering well to the prompt.

    In contrast, Player 1's image is simpler and less imaginative in its execution, lacking the surreal quality and depth 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
19
Player 2
21
Rectangles

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

Player 1
4
Player 2
1
Circles

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

Player 1
7
Player 2
8
Ellipses

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

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

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

Player 1
2
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
3
Patterns

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
3

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

Complexity Metrics

Path Commands

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

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