Back

SVG Drawing Match #2234

May 08, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A frog wearing a crown, sitting on a lily pad under a crescent moon."

SVG by o4-mini low (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#0b1d51"/>
      <stop offset="100%" stop-color="#16296f"/>
    </linearGradient>
    <radialGradient id="moonGrad" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#fffde7"/>
      <stop offset="100%" stop-color="#f0e6b8"/>
    </radialGradient>
    <linearGradient id="padGrad" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#2b8f2b"/>
      <stop offset="100%" stop-color="#1f6e1f"/>
    </linearGradient>
    <radialGradient id="frogSkin" cx="0.4" cy="0.4" r="0.6">
      <stop offset="0%" stop-color="#8fd14f"/>
      <stop offset="100%" stop-color="#5a8a2f"/>
    </radialGradient>
    <linearGradient id="crownGrad" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#ffe066"/>
      <stop offset="100%" stop-color="#ffcc33"/>
    </linearGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feGaussianBlur in="SourceAlpha" stdDeviation="3" result="blur"/>
      <feOffset in="blur" dx="2" dy="2" result="offsetBlur"/>
      <feMerge>
        <feMergeNode in="offsetBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <pattern id="padTexture" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.2)"/>
    </pattern>
  </defs>
  <!-- Sky background -->
  <rect width="300" height="300" fill="url(#skyGrad)"/>
  <!-- Crescent Moon -->
  <circle cx="230" cy="60" r="40" fill="url(#moonGrad)"/>
  <circle cx="245" cy="55" r="40" fill="url(#skyGrad)"/>
  <!-- Lily Pad -->
  <ellipse cx="150" cy="240" rx="120" ry="40" fill="url(#padGrad)" filter="url(#shadow)"/>
  <ellipse cx="150" cy="240" rx="120" ry="40" fill="url(#padTexture)" opacity="0.3"/>
  <!-- Frog Body -->
  <g filter="url(#shadow)">
    <ellipse cx="150" cy="200" rx="40" ry="30" fill="url(#frogSkin)"/>
    <ellipse cx="135" cy="185" rx="10" ry="8" fill="url(#frogSkin)"/>
    <ellipse cx="165" cy="185" rx="10" ry="8" fill="url(#frogSkin)"/>
    <!-- Eyes -->
    <circle cx="135" cy="180" r="5" fill="#fff"/>
    <circle cx="165" cy="180" r="5" fill="#fff"/>
    <circle cx="135" cy="180" r="2" fill="#2a2a2a"/>
    <circle cx="165" cy="180" r="2" fill="#2a2a2a"/>
    <!-- Mouth -->
    <path d="M130,210 Q150,220 170,210" stroke="#3a3a3a" stroke-width="2" fill="none"/>
    <!-- Legs -->
    <path d="M110,220 Q100,240 120,245" stroke="url(#frogSkin)" stroke-width="6" fill="none" stroke-linecap="round"/>
    <path d="M190,220 Q200,240 180,245" stroke="url(#frogSkin)" stroke-width="6" fill="none" stroke-linecap="round"/>
  </g>
  <!-- Crown -->
  <polygon points="140,165 160,165 165,145 155,155 150,140 145,155 135,145 140,165"
           fill="url(#crownGrad)" stroke="#e6b800" stroke-width="2" filter="url(#shadow)"/>
  <!-- Stars -->
  <g fill="#fff" opacity="0.6">
    <circle cx="40" cy="40" r="2"/>
    <circle cx="60" cy="80" r="1.5"/>
    <circle cx="80" cy="30" r="1"/>
    <circle cx="160" cy="50" r="1.8"/>
    <circle cx="200" cy="30" r="1.2"/>
  </g>
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="moonGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFFFE0" />
      <stop offset="100%" stop-color="#E0FFFF" />
    </radialGradient>
    <linearGradient id="frogGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#008000" />
      <stop offset="50%" stop-color="#006400" />
      <stop offset="100%" stop-color="#004d00" />
    </linearGradient>
    <pattern id="lilypadPattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="5" fill="#006400" />
    </pattern>
  </defs>
  <path d="M200 50 A 80 80 0 1 0 280 50" fill="url(#moonGradient)" stroke="#FFFFE0" stroke-width="2"/>
  <ellipse cx="150" cy="200" rx="80" ry="40" fill="url(#lilypadPattern)" stroke="#004d00" stroke-width="2"/>
  <ellipse cx="150" cy="180" rx="50" ry="30" fill="url(#frogGradient)"/>
  <circle cx="130" cy="160" r="10" fill="#FFFF00"/>
  <circle cx="170" cy="160" r="10" fill="#FFFF00"/>
  <path d="M120 140 A 10 10 0 0 0 140 140" stroke="black" stroke-width="2"/>
  <path d="M160 140 A 10 10 0 0 1 180 140" stroke="black" stroke-width="2"/>
  <path d="M135 130 L 145 115 L 155 130 L 165 115 L 155 130 Z" fill="#FFD700" stroke="black" stroke-width="1"/>
  <ellipse cx="120" cy="200" rx="10" ry="5" fill="#004d00" transform="rotate(-20 120 200)"/>
  <ellipse cx="180" cy="200" rx="10" ry="5" fill="#004d00" transform="rotate(20 180 200)"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini low (2025-04-16) Player 1

Judge's Analysis

    Player 1's image is visually appealing, adheres closely to the prompt, and demonstrates strong technical execution with a clear depiction of a frog wearing a crown on a lily pad under a crescent moon.

    Player 2's submission is more abstract and less refined, with a lack of clarity in the frog's features and the crescent moon being less defined.

    Overall, Player 1's composition is more cohesive and polished.

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
22
Player 2
11
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
12
Player 2
3
Ellipses

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

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

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

Player 1
3
Player 2
4
Groups

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
8

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