Back

SVG Drawing Match #1922

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A floating island with a twisted tree and a single hanging lantern"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#B2E0E6;stop-opacity:1"/>
    </linearGradient>
    <linearGradient id="islandGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#8B4513;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#A0522D;stop-opacity:1"/>
    </linearGradient>
    <radialGradient id="treeLeavesGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#228B22;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#7FFF00;stop-opacity:1"/>
    </radialGradient>
    <radialGradient id="lanternGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#FF8C00;stop-opacity:1"/>
    </radialGradient>
  </defs>
  
  <rect width="100%" height="100%" fill="url(#skyGradient)"/>
  
  <g transform="translate(150, 200)">
    <path d="M-70,50 Q0,0 70,50 Q80,70 0,100 Q-80,70 -70,50 Z" fill="url(#islandGradient)"/>
    <path d="M-5,50 Q0,20 5,50 Z" fill="url(#treeLeavesGradient)" transform="translate(0, -30) rotate(-30) scale(7)"/>
    <path d="M0,50 C-5,70 -20,70 -20,100 C-20,120 -10,130 0,130 C10,130 20,120 20,100 C20,70 5,70 0,50 Z" fill="#654321"/>
    <path d="M0,50 Q-5,70 -10,70 C-10,90 0,90 0,110 C0,90 10,90 10,70 C5,70 0,70 0,50 Z" fill="#8B4513" opacity="0.7"/>
  
    <circle cx="10" cy="-20" r="10" fill="url(#lanternGradient)"/>
    <line x1="10" y1="-20" x2="10" y2="10" stroke="#000" stroke-width="2" stroke-linecap="round"/>
    <circle cx="10" cy="-20" r="2" fill="#fff"/>
  </g>
  
  <text x="50%" y="90%" font-family="Verdana" font-size="12" fill="#000" text-anchor="middle">Floating Island of Wonder</text>
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Gradient Definitions -->
  <defs>
    <linearGradient id="islandGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#4567b7" stop-opacity="0.5"/>
      <stop offset="100%" stop-color="#87CEEB" stop-opacity="0.5"/>
    </linearGradient>
    <radialGradient id="lanternGrad" cx="0.4" cy="0.6" r="0.4">
      <stop offset="0%" stop-color="#FFD700" stop-opacity="1"/>
      <stop offset="100%" stop-color="#800000" stop-opacity="0.5"/>
    </radialGradient>
    <linearGradient id="treeGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#663300" stop-opacity="0.5"/>
      <stop offset="100%" stop-color="#222222" stop-opacity="0.5"/>
    </linearGradient>
  </defs>
  <!-- Island -->
  <ellipse cx="150" cy="240" rx="100" ry="20" fill="url(#islandGrad)" opacity="0.7" transform="rotate(2 150 240)"/>
  <!-- Tree -->
  <path fill="none" stroke-width="4" stroke-linecap="round" stroke="url(#treeGrad)">
    <move to="180,170"/>
    <cubic-bezier-control-points d="180,170 220,220 150,200 100,240  120, 140,180,190 120,190 180,200 230,170  230,150 120,120,180,110"/>
  </path>
  <!-- Lantern -->
  <circle cx="140" cy="130" r="10" fill="url(#lanternGrad)" opacity="1"/>
  <line x1="140" y1="120" x2="140" y2="180" stroke-width="2" stroke="#888" opacity="0.7" transform="rotate(10 140 150)"/>
  <!-- Additional Decorations -->
  <circle cx="120" cy="125" r="5" fill="#000" opacity="0.7"/>
  <polygon points="121,119 129,119 131,125 119,125" fill="#FFD700" opacity="1" transform="rotate(10 125 122)"/>
  <use xlink:href="#leaf-pattern" transform="translate(110 160) scale(0.5)"/>
  <symbol id="leaf-pattern">
    <path d="M0,1 L2,1 Q3,0 3,0 L1,2 L0, 1 Z" fill="#99FF99" stroke-width="0.1" stroke="#888" transform="rotate(10)">
    <animateTransform attributeType="xml" attributeName="transform" type="rotate" dur="10s" from="0 0 0" to="360 0 0" repeatCount="indefinite"/>
  </symbol>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 1

Judge's Analysis

    Player 1's image successfully depicts a floating island with a clear representation of a twisted tree and a hanging lantern.

    The composition effectively adheres to the prompt, showcasing creativity with a vibrant color scheme and a stylized depiction.

    Player 2's submission is not visible, offering no content for evaluation.

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
8
Player 2
Rectangles

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

Player 1
1
Player 2
Circles

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

Player 1
2
Player 2
Ellipses

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

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

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2

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

Complexity Metrics

Path Commands

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

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