Back

SVG Drawing Match #43

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cosmic tea party on a floating iceberg under a swirling aurora borealis"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="aurora-gradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#44d9e8"/>
      <stop offset="50%" stop-color="#98e8b8"/>
      <stop offset="100%" stop-color="#e8cb44"/>
    </linearGradient>
    <linearGradient id="iceberg-gradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#b3f0ff" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#e8faff"/>
    </linearGradient>
    <radialGradient id="tea-glow" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ff9d9d" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="transparent"/>
    </radialGradient>
    <pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="3" cy="3" r="1.5" fill="white"/>
      <circle cx="7" cy="7" r="0.5" fill="white"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="black"/>
  <rect width="300" height="300" fill="url(#stars)" opacity="0.5"/>
  
  <path d="M0,150 Q50,100 100,150 Q150,200 200,150 Q250,100 300,150 L300,300 L0,300 Z" fill="url(#aurora-gradient)"/>

  <path d="M85,180 Q130,160 170,180 Q160,200 170,230 L85,230 Z" fill="url(#iceberg-gradient)" stroke="#8fd0db" stroke-width="2"/>

  <circle cx="127" cy="205" r="20" fill="#ffee93" filter="url(#tea-glow)"/>
  <path d="M122,200 Q125,195 132,200" fill="none" stroke="#403d39" stroke-width="2"/>

  <circle cx="235" cy="60" r="18" fill="url(#tea-glow)"/>
  <path d="M230,60 Q235,54 240,60" fill="none" stroke="#403d39" stroke-width="2"/>

  <ellipse cx="180" cy="190" rx="10" ry="5" fill="#c4f5fc"/>
  <ellipse cx="140" cy="200" rx="10" ry="5" fill="#c4f5fc"/>
  <ellipse cx="160" cy="220" rx="12" ry="6" fill="#c4f5fc"/>

  <ellipse cx="230" cy="190" rx="10" ry="8" fill="#94d3ea"/>
  <ellipse cx="190" cy="210" rx="12" ry="5" fill="#bbebff"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sky background with stars -->
  <rect width="300" height="300" fill="#0a0a2a"/>
  <g id="stars">
    <circle cx="15" cy="25" r="1" fill="white"/>
    <circle cx="85" cy="15" r="1" fill="white"/>
    <circle cx="220" cy="35" r="1" fill="white"/>
    <!-- More stars (shortened for brevity) -->
  </g>

  <!-- Swirling Aurora -->
  <defs>
    <linearGradient id="auroraGradient1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#3f51b5;stop-opacity:0.8"/>
      <stop offset="100%" style="stop-color:#4caf50;stop-opacity:0.8"/>
    </linearGradient>
    <linearGradient id="auroraGradient2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#8a2be2;stop-opacity:0.8"/>
      <stop offset="100%" style="stop-color:#00bfff;stop-opacity:0.8"/>
    </linearGradient>
  </defs>

  <path d="M50 100 Q150 50 250 100 Q200 150 150 200 Q100 150 50 100" 
        fill="url(#auroraGradient1)" opacity="0.6">
    <animate attributeName="d" from="M50 100 Q150 50 250 100 Q200 150 150 200 Q100 150 50 100" 
             to="M50 80 Q160 40 260 80 Q220 120 150 160 Q80 140 50 100" 
             dur="4s" repeatCount="indefinite"/>
  </path>

  <path d="M70 120 Q170 70 270 120 Q240 170 170 220 Q120 180 70 120" 
        fill="url(#auroraGradient2)" opacity="0.6">
    <animate attributeName="d" from="M70 120 Q170 70 270 120 Q240 170 170 220 Q120 180 70 120"
             to="M60 100 Q160 60 260 100 Q230 130 160 170 Q110 150 60 100"
             dur="5s" repeatCount="indefinite"/>
  </path>

  <!-- Floating Iceberg -->
  <g transform="translate(100,150)">
    <path d="M-50-100 L50-80 L100-50 L80-20 0 0 -80-20 -100-50 -50-100"
          fill="white" opacity="0.9">
      <filter id="iceFilter">
        <feGaussianBlur stdDeviation="4" result="blur"/>
        <feMerge>
          <feMergeNode in="blur"/>
          <feMergeNode in="SourceGraphic"/>
        </feMerge>
      </filter>
    </path>
    <path d="M-30-80 Q0-50 30-80 L20-50 L-20-50 -30-80"
          fill="#c0c0c0" opacity="0.7"/>
  </g>

  <!-- Tea Party Elements -->
  <g transform="translate(150,180)">
    <!-- Table -->
    <circle cx="0" cy="0" r="30" fill="url(#metalGradient)"/>
    <!-- Teapot -->
    <path d="M-20,0 L0,20 Q10,30 20,20 L40,0 Q30,-20 10,-20 Z"
          fill="#ffd700" transform="scale(0.8) rotate(-30)"/>
    <!-- Cups -->
    <circle cx="-35" cy="0" r="15" fill="#ffd700"/>
    <circle cx="35" cy="0" r="15" fill="#ffd700"/>
  </g>

  <!-- Glowing Effects -->
  <defs>
    <linearGradient id="steamGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:white;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:transparent;stop-opacity:0"/>
    </linearGradient>
  </defs>
  <path d="M150 170 Q160 160 170 150" stroke="url(#steamGradient)" stroke-width="2" opacity="0.7"/>
</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 image captures the essence of a cosmic tea party with a clearer depiction of an iceberg and tea elements, such as cups, in a cosmic setting.

    The composition is more cohesive and visually appealing, with a better representation of the aurora borealis through the use of color gradients.

    Player 1's image, while creative, lacks clarity in the depiction of the scene and elements specific to a tea party.

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
15
Player 2
13
Rectangles

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

Player 1
2
Player 2
1
Circles

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

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

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

Player 1
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
4

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
3

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
24
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