Back

SVG Drawing Match #1703

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with a tiny village, eclipsed by a colossal hovering jellyfish"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sky Gradient -->
  <linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" stop-color="#87CEEB" />
    <stop offset="100%" stop-color="#4682B4" />
  </linearGradient>
  <rect x="0" y="0" width="300" height="300" fill="url(#sky)" />
  
  <!-- Island -->
  <g transform="translate(120, 150)">
    <ellipse cx="0" cy="0" rx="40" ry="20" fill="#964B00" />
    <path d="M -30 -10 C -20 -10, -10 -20, 0 -10 C 10 -20, 20 -10, 30 -10" stroke="#964B00" stroke-width="2" fill="none" />
    <path d="M -10 -15 C 0 -25, 10 -25, 10 -15" stroke="#964B00" stroke-width="2" fill="none" />
  </g>
  
  <!-- Village -->
  <g transform="translate(130, 160)">
    <rect x="0" y="0" width="10" height="10" fill="#FFC080" />
    <rect x="15" y="0" width="10" height="10" fill="#FFC080" />
    <rect x="30" y="0" width="10" height="10" fill="#FFC080" />
    <path d="M 5 10 L 5 20" stroke="#FFC080" stroke-width="2" />
    <path d="M 20 10 L 20 20" stroke="#FFC080" stroke-width="2" />
    <path d="M 35 10 L 35 20" stroke="#FFC080" stroke-width="2" />
  </g>
  
  <!-- Jellyfish -->
  <g transform="translate(150, 50)">
    <circle cx="0" cy="0" r="80" fill="#00BFFF" opacity="0.5" />
    <path d="M 0 -80 C -40 -40, 40 -40, 0 0 C -40 40, 40 40, 0 80" stroke="#00BFFF" stroke-width="4" fill="none" />
    <path d="M 0 0 C 20 20, 40 40, 60 60" stroke="#00BFFF" stroke-width="4" fill="none" />
    <path d="M 0 0 C -20 20, -40 40, -60 60" stroke="#00BFFF" stroke-width="4" fill="none" />
    <path d="M 0 0 C 20 -20, 40 -40, 60 -60" stroke="#00BFFF" stroke-width="4" fill="none" />
    <path d="M 0 0 C -20 -20, -40 -40, -60 -60" stroke="#00BFFF" stroke-width="4" fill="none" />
  </g>
  
  <!-- Eclipse Shadow -->
  <ellipse cx="150" cy="50" rx="100" ry="80" fill="#000000" opacity="0.2" />
</svg>
SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001f3f"/>
      <stop offset="100%" stop-color="#0074D9"/>
    </linearGradient>
    <linearGradient id="jellyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#FF4136"/>
      <stop offset="50%" stop-color="#FF851B"/>
      <stop offset="100%" stop-color="#FFDC00"/>
    </linearGradient>
    <radialGradient id="islandGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#2ECC40"/>
      <stop offset="100%" stop-color="#3D9970"/>
    </radialGradient>
    <pattern id="villagePattern" width="4" height="4" patternUnits="userSpaceOnUse">
      <rect width="4" height="4" fill="#FF851B"/>
      <path d="M0 0L4 4M4 0L0 4" stroke="#85144b" stroke-width="0.5"/>
    </pattern>
  </defs>
  
  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />

  <!-- Colossal hovering jellyfish (eclipsing element) -->
  <g id="jellyfish" opacity="0.8">
    <!-- Bell of jellyfish -->
    <ellipse cx="150" cy="80" rx="70" ry="45" fill="url(#jellyGradient)" stroke="#85144b" stroke-width="2"/>
    <!-- Tentacles -->
    <g stroke="#FF4136" stroke-width="2" fill="none">
      <path d="M120,100 C115,130 100,140 90,170" />
      <path d="M130,100 C125,135 110,145 100,175" />
      <path d="M140,100 C135,140 120,155 110,185" />
      <path d="M150,100 C145,135 130,150 120,180" />
      <path d="M160,100 C155,140 140,155 130,185" />
      <path d="M170,100 C165,135 150,150 140,180" />
      <path d="M180,100 C175,130 160,140 150,170" />
    </g>
  </g>

  <!-- Floating island -->
  <g id="island">
    <!-- Island base shape with organic curves -->
    <path d="M90,220 C70,210 50,240 60,265 C80,275 220,275 240,265 C250,240 230,210 210,220 C190,210 110,210 90,220" fill="url(#islandGradient)" stroke="#2ECC40" stroke-width="2"/>
    <!-- Shadow for island -->
    <ellipse cx="150" cy="275" rx="60" ry="10" fill="rgba(0,0,0,0.2)"/>
    
    <!-- Tiny village -->
    <g id="village">
      <!-- House 1 -->
      <g transform="translate(110,210)">
        <rect x="0" y="0" width="12" height="10" fill="url(#villagePattern)" stroke="#85144b" stroke-width="0.5"/>
        <polygon points="0,0 6, -6 12,0" fill="#FFDC00" stroke="#85144b" stroke-width="0.5"/>
      </g>
      <!-- House 2 -->
      <g transform="translate(135,215)">
        <rect x="0" y="0" width="10" height="8" fill="url(#villagePattern)" stroke="#85144b" stroke-width="0.5"/>
        <polygon points="0,0 5, -5 10,0" fill="#FFDC00" stroke="#85144b" stroke-width="0.5"/>
      </g>
      <!-- House 3 -->
      <g transform="translate(155,205)">
        <rect x="0" y="0" width="14" height="11" fill="url(#villagePattern)" stroke="#85144b" stroke-width="0.5"/>
        <polygon points="0,0 7,-7 14,0" fill="#FFDC00" stroke="#85144b" stroke-width="0.5"/>
      </g>
      <!-- Tree -->
      <g transform="translate(175,215)">
        <rect x="6" y="6" width="2" height="6" fill="#8B4513"/>
        <circle cx="7" cy="5" r="4" fill="#2ECC40" stroke="#3D9970" stroke-width="0.5"/>
      </g>
      <!-- Small detail: smoke from a chimney -->
      <g transform="translate(110,210)">
        <path d="M2, -2 q-2,-3 0,-6" stroke="#AAAAAA" stroke-width="0.5" fill="none" />
        <path d="M4, -2 q-1,-2 1,-5" stroke="#AAAAAA" stroke-width="0.5" fill="none" />
      </g>
    </g>
  </g>
  
  <!-- Additional artistic embellishments: ethereal light beams -->
  <g opacity="0.3">
    <line x1="150" y1="0" x2="150" y2="300" stroke="white" stroke-width="1" stroke-dasharray="5,5" />
    <line x1="0" y1="150" x2="300" y2="150" stroke="white" stroke-width="1" stroke-dasharray="5,5" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 2

Judge's Analysis

    Player 2's image presents a more vibrant and imaginative interpretation of the prompt with a clearly defined floating island and a colossal jellyfish.

    The use of color and composition enhances the visual appeal, making the scene more dynamic and engaging.

    In contrast, Player 1's submission lacks the same level of detail and creativity, resulting in a less captivating depiction.

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
17
Player 2
25
Rectangles

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

Player 1
4
Player 2
6
Circles

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

Player 1
1
Player 2
1
Ellipses

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

Player 1
2
Player 2
2
Lines

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

Player 1
Player 2
2
Polygons

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

Player 1
Player 2
3
Paths

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

Player 1
10
Player 2
11
Groups

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

Player 1
3
Player 2
10

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
15

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
12

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
3
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
22
Player 2
27
Max Group Nesting

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

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