Back

SVG Drawing Match #1690

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Sky-high penguin on a carousel horse"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#FFFFFF"/>
    </linearGradient>
    <radialGradient id="horseGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#FFD700"/>
      <stop offset="100%" stop-color="#FF8C00"/>
    </radialGradient>
    <linearGradient id="penguinGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#000000"/>
      <stop offset="100%" stop-color="#333333"/>
    </linearGradient>
    <pattern id="carouselPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="10" cy="10" r="5" fill="#FF69B4"/>
      <circle cx="10" cy="10" r="3" fill="#FFFFFF"/>
    </pattern>
  </defs>

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

  <!-- Clouds -->
  <g>
    <ellipse cx="60" cy="60" rx="30" ry="20" fill="#FFFFFF" opacity="0.8"/>
    <ellipse cx="90" cy="60" rx="30" ry="20" fill="#FFFFFF" opacity="0.8"/>
    <ellipse cx="75" cy="50" rx="25" ry="15" fill="#FFFFFF" opacity="0.8"/>
    
    <ellipse cx="200" cy="80" rx="25" ry="15" fill="#FFFFFF" opacity="0.8"/>
    <ellipse cx="230" cy="80" rx="25" ry="15" fill="#FFFFFF" opacity="0.8"/>
    <ellipse cx="215" cy="70" rx="20" ry="10" fill="#FFFFFF" opacity="0.8"/>
  </g>

  <!-- Carousel Base -->
  <g>
    <rect x="50" y="250" width="200" height="20" fill="#8B4513"/>
    <line x1="50" y1="250" x2="250" y2="250" stroke="#000" stroke-width="2"/>
    
    <!-- Carousel poles -->
    <line x1="75" y1="250" x2="75" y2="200" stroke="#FFD700" stroke-width="4" />
    <line x1="225" y1="250" x2="225" y2="200" stroke="#FFD700" stroke-width="4" />
    
    <!-- Carousel roof -->
    <path d="M75 200 C150 150, 150 150, 225 200" fill="url(#carouselPattern)" stroke="#FFD700" stroke-width="2"/>
  </g>

  <!-- Carousel Horse -->
  <g transform="translate(150, 180)">
    <ellipse cx="0" cy="20" rx="40" ry="20" fill="url(#horseGradient)" stroke="#000" stroke-width="2"/>
    <path d="M-40,20 Q-30,0 -10,10 Q0,20, 10,10 Q30,0, 40,20" fill="url(#horseGradient)" stroke="#000" stroke-width="2"/>
    <!-- Horse Mane -->
    <path d="M-20,10 Q-15,0 -10,10" stroke="#800000" stroke-width="2" fill="none"/>
    <path d="M0,10 Q5,0 10,10" stroke="#800000" stroke-width="2" fill="none"/>
    <path d="M20,10 Q25,0 30,10" stroke="#800000" stroke-width="2" fill="none"/>
    <!-- Saddle -->
    <rect x="-10" y="-10" width="20" height="10" fill="#654321" stroke="#000" stroke-width="1"/>
  </g>

  <!-- Penguin -->
  <g transform="translate(150, 160)">
    <ellipse cx="0" cy="0" rx="10" ry="15" fill="url(#penguinGradient)" stroke="#000" stroke-width="1"/>
    <ellipse cx="-4" cy="-5" rx="2" ry="3" fill="#FFFFFF"/>
    <ellipse cx="4" cy="-5" rx="2" ry="3" fill="#FFFFFF"/>
    <circle cx="0" cy="-2" r="2" fill="#FF69B4"/>
    <path d="M-5,5 Q0,10 5,5" stroke="#000" stroke-width="1" fill="none"/>
    <!-- Wings -->
    <path d="M-10,0 Q-15,5 -10,10" fill="#333333" stroke="#000" stroke-width="1"/>
    <path d="M10,0 Q15,5 10,10" fill="#333333" stroke="#000" stroke-width="1"/>
  </g>

  <!-- Decorative Stars -->
  <g fill="#FFD700">
    <circle cx="280" cy="30" r="2"/>
    <circle cx="260" cy="80" r="1.5"/>
    <circle cx="220" cy="40" r="1.5"/>
    <circle cx="240" cy="120" r="2"/>
    <circle cx="180" cy="70" r="1"/>
    <circle cx="160" cy="20" r="1.5"/>
  </g>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sky background with gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#1a237e" />
      <stop offset="40%" stop-color="#4a148c" />
      <stop offset="70%" stop-color="#880e4f" />
      <stop offset="100%" stop-color="#ff6f00" />
    </linearGradient>
    
    <linearGradient id="carouselPoleGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#b71c1c" />
      <stop offset="50%" stop-color="#f44336" />
      <stop offset="100%" stop-color="#b71c1c" />
    </linearGradient>
    
    <radialGradient id="starGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="white" stop-opacity="1" />
      <stop offset="100%" stop-color="white" stop-opacity="0" />
    </radialGradient>
    
    <pattern id="clouds" x="0" y="0" width="300" height="100" patternUnits="userSpaceOnUse">
      <ellipse cx="30" cy="50" rx="30" ry="20" fill="rgba(255,255,255,0.5)" />
      <ellipse cx="70" cy="60" rx="40" ry="25" fill="rgba(255,255,255,0.4)" />
      <ellipse cx="150" cy="40" rx="50" ry="30" fill="rgba(255,255,255,0.6)" />
      <ellipse cx="220" cy="70" rx="45" ry="20" fill="rgba(255,255,255,0.5)" />
      <ellipse cx="280" cy="30" rx="30" ry="25" fill="rgba(255,255,255,0.4)" />
    </pattern>
    
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="2.5" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
  </defs>
  
  <!-- Sky background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Stars -->
  <g>
    <circle cx="30" cy="30" r="1.5" fill="white" filter="url(#glow)" />
    <circle cx="70" cy="20" r="1" fill="white" filter="url(#glow)" />
    <circle cx="120" cy="40" r="2" fill="white" filter="url(#glow)" />
    <circle cx="170" cy="15" r="1.5" fill="white" filter="url(#glow)" />
    <circle cx="230" cy="35" r="1" fill="white" filter="url(#glow)" />
    <circle cx="250" cy="25" r="2" fill="white" filter="url(#glow)" />
    <circle cx="280" cy="45" r="1.5" fill="white" filter="url(#glow)" />
    <circle cx="50" cy="60" r="1" fill="white" filter="url(#glow)" />
    <circle cx="90" cy="50" r="1.5" fill="white" filter="url(#glow)" />
    <circle cx="210" cy="60" r="1" fill="white" filter="url(#glow)" />
  </g>
  
  <!-- Clouds -->
  <rect x="0" y="70" width="300" height="100" fill="url(#clouds)" opacity="0.7" />
  
  <!-- Carousel pole -->
  <rect x="145" y="90" width="10" height="210" fill="url(#carouselPoleGradient)" />
  <circle cx="150" cy="90" r="15" fill="gold" />
  <circle cx="150" cy="90" r="10" fill="#ff5722" />
  
  <!-- Carousel horse body -->
  <path d="M90,170 C80,140 120,130 140,150 C160,170 180,160 190,180 C200,200 170,220 150,210 C120,200 100,200 90,170" fill="#e91e63" stroke="#880e4f" stroke-width="2" />
  
  <!-- Horse legs -->
  <rect x="105" y="200" width="8" height="40" rx="4" fill="#4a148c" />
  <rect x="175" y="200" width="8" height="40" rx="4" fill="#4a148c" />
  
  <!-- Horse head -->
  <path d="M80,170 C70,160 75,150 85,145 C95,140 100,150 95,160" fill="#e91e63" stroke="#880e4f" stroke-width="2" />
  <ellipse cx="85" cy="145" rx="3" ry="5" fill="black" />
  
  <!-- Horse mane -->
  <path d="M90,145 C95,135 100,140 100,145 C105,135 110,140 110,150" stroke="#ff9800" stroke-width="5" fill="none" />
  
  <!-- Carousel horse pole -->
  <rect x="120" y="100" width="5" height="70" fill="silver" />
  <circle cx="122.5" cy="100" r="6" fill="gold" />
  
  <!-- Penguin body -->
  <ellipse cx="140" cy="140" rx="25" ry="30" fill="#263238" />
  <ellipse cx="140" cy="148" rx="18" ry="20" fill="white" />
  
  <!-- Penguin head -->
  <circle cx="140" cy="105" r="20" fill="#263238" />
  <ellipse cx="140" cy="115" rx="15" ry="10" fill="white" />
  
  <!-- Penguin eyes -->
  <circle cx="130" cy="100" r="4" fill="white" />
  <circle cx="150" cy="100" r="4" fill="white" />
  <circle cx="130" cy="100" r="2" fill="black" />
  <circle cx="150" cy="100" r="2" fill="black" />
  
  <!-- Penguin beak -->
  <path d="M135,115 L145,115 L140,125 Z" fill="#ff9800" />
  
  <!-- Penguin flippers -->
  <ellipse cx="115" cy="145" rx="10" ry="5" fill="#263238" transform="rotate(-20,115,145)" />
  <ellipse cx="165" cy="145" rx="10" ry="5" fill="#263238" transform="rotate(20,165,145)" />
  
  <!-- Penguin bowtie -->
  <path d="M135,130 L145,130 L140,135 Z" fill="#f44336" />
  <path d="M135,130 L145,130 L140,125 Z" fill="#f44336" />
  <circle cx="140" cy="130" r="2" fill="gold" />
  
  <!-- Penguin top hat -->
  <rect x="125" y="80" width="30" height="8" fill="black" />
  <rect x="130" y="65" width="20" height="15" fill="black" />
  <rect x="132" y="65" width="16" height="3" fill="gold" />
  
  <!-- Additional carousel decorations -->
  <circle cx="95" cy="170" r="5" fill="gold" />
  <circle cx="185" cy="180" r="5" fill="gold" />
  <circle cx="140" cy="210" r="5" fill="gold" />
  
  <!-- Moon -->
  <circle cx="260" cy="50" r="20" fill="#ffd54f" stroke="#ff6f00" stroke-width="2" filter="url(#glow)" />
  <circle cx="250" cy="45" r="5" fill="#ffecb3" />
  <circle cx="270" cy="55" r="4" fill="#ffecb3" />
  <circle cx="265" cy="40" r="3" fill="#ffecb3" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's image better adheres to the prompt by clearly depicting a penguin on a carousel horse in a sky-high setting.

    The composition is visually appealing with strong use of color contrast and includes details like a top hat that enhance creativity.

    In contrast, Player 1's image lacks clarity in representing a carousel horse and feels less cohesive overall.

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
33
Player 2
52
Rectangles

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

Player 1
3
Player 2
9
Circles

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

Player 1
9
Player 2
26
Ellipses

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

Player 1
10
Player 2
11
Lines

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

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

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

Player 1
5
Player 2
1

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

The number of elements with stroke attributes in the SVG.

Player 1
14
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
19

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
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
18
Player 2
23
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
5
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