Back

SVG Drawing Match #2547

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cactus wearing a top hat and monocle in a desert sunset."

SVG by o4-mini medium (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="sunset" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" stop-color="#FF5F6D"/>
      <stop offset="50%" stop-color="#FFC371"/>
      <stop offset="100%" stop-color="#7F7FD5"/>
    </linearGradient>
    <radialGradient id="sun" cx="150" cy="260" r="70">
      <stop offset="0%" stop-color="#FFF9C4"/>
      <stop offset="100%" stop-color="rgba(255,255,255,0)"/>
    </radialGradient>
    <linearGradient id="cactusGrad" x1="0" y1="0" x2="0" y2="150">
      <stop offset="0%" stop-color="#7ED957"/>
      <stop offset="100%" stop-color="#3A9E48"/>
    </linearGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="0" dy="4" stdDeviation="4" flood-color="#000" flood-opacity="0.4"/>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#sunset)"/>
  <circle cx="150" cy="260" r="70" fill="url(#sun)"/>

  <!-- Dunes -->
  <path d="M0,260 C50,240 100,260 150,240 C200,220 250,260 300,240 L300,300 L0,300 Z" fill="#EEA550"/>
  <path d="M0,280 C60,260 120,280 180,260 C240,240 300,280 360,260 L360,300 L0,300 Z" fill="#D18B3C" opacity="0.8"/>

  <!-- Cactus -->
  <g filter="url(#shadow)">
    <path d="M150,210 C140,210 140,140 150,140 C145,120 170,120 165,140 C175,140 175,210 165,210 Z" fill="url(#cactusGrad)"/>
    <circle cx="145" cy="160" r="15" fill="url(#cactusGrad)"/>
    <circle cx="165" cy="180" r="12" fill="url(#cactusGrad)"/>
    <!-- Spines -->
    <g stroke="#fff" stroke-width="1">
      <line x1="150" y1="150" x2="150" y2="158"/>
      <line x1="140" y1="160" x2="145" y2="164"/>
      <line x1="160" y1="180" x2="164" y2="184"/>
      <line x1="155" y1="170" x2="158" y2="175"/>
      <line x1="155" y1="190" x2="158" y2="194"/>
    </g>
  </g>

  <!-- Top Hat -->
  <ellipse cx="150" cy="140" rx="40" ry="8" fill="#222"/>
  <rect x="110" y="100" width="80" height="40" rx="5" fill="#333"/>
  <rect x="115" y="130" width="70" height="6" fill="#800020"/>

  <!-- Monocle -->
  <circle cx="140" cy="155" r="8" fill="rgba(173,216,230,0.4)" stroke="#d4af37" stroke-width="2"/>
  <line x1="147" y1="162" x2="180" y2="195" stroke="#d4af37" stroke-width="2"/>
  <circle cx="155" cy="172" r="2" fill="#d4af37"/>
  <circle cx="165" cy="182" r="2" fill="#d4af37"/>
  <circle cx="175" cy="192" r="2" fill="#d4af37"/>
</svg>
SVG by Gemini 2.5 Pro Preview 05-06
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FF6347;stop-opacity:1" /> <!-- Tomato -->
      <stop offset="25%" style="stop-color:#FF4500;stop-opacity:1" /> <!-- OrangeRed -->
      <stop offset="50%" style="stop-color:#FF8C00;stop-opacity:1" /> <!-- DarkOrange -->
      <stop offset="75%" style="stop-color:#9400D3;stop-opacity:1" /> <!-- DarkViolet -->
      <stop offset="100%" style="stop-color:#483D8B;stop-opacity:1" /> <!-- DarkSlateBlue -->
    </linearGradient>

    <radialGradient id="sunGradientCore" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
      <stop offset="0%" style="stop-color:#FFFACD; stop-opacity:1;" /> <!-- LemonChiffon -->
      <stop offset="70%" style="stop-color:#FFD700; stop-opacity:1;" /> <!-- Gold -->
      <stop offset="100%" style="stop-color:#FFA500; stop-opacity:0.8;" /> <!-- Orange -->
    </radialGradient>
     <radialGradient id="sunGradientGlow" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
      <stop offset="30%" style="stop-color:#FFD700; stop-opacity:0.5;" /> <!-- Gold -->
      <stop offset="100%" style="stop-color:#FF8C00; stop-opacity:0;" /> <!-- DarkOrange (transparent outer glow) -->
    </radialGradient>

    <linearGradient id="groundGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#CD853F;" /> <!-- Peru -->
      <stop offset="100%" style="stop-color:#A0522D;" /> <!-- Sienna -->
    </linearGradient>
    
    <linearGradient id="cactusBodyGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#2E8B57;" /> <!-- SeaGreen -->
      <stop offset="50%" style="stop-color:#3CB371;" /> <!-- MediumSeaGreen -->
      <stop offset="100%" style="stop-color:#2E8B57;" />
    </linearGradient>

    <pattern id="cactusSpinesPattern" patternUnits="userSpaceOnUse" width="10" height="10" viewBox="0 0 10 10">
        <g stroke="#004D00" stroke-width="0.5" stroke-linecap="round">
            <path d="M1 5 L3 5 M2 4 L2 6"/> <!-- small + -->
            <path d="M6 2 L8 2 M7 1 L7 3"/>
            <path d="M5 8 L7 8 M6 7 L6 9"/>
        </g>
    </pattern>
  </defs>

  <!-- Sky -->
  <rect x="0" y="0" width="300" height="220" fill="url(#skyGradient)" />

  <!-- Stars -->
  <circle cx="60" cy="30" r="1.2" fill="white" opacity="0.9"/>
  <circle cx="95" cy="55" r="0.8" fill="white" opacity="0.7"/>
  <circle cx="210" cy="40" r="1" fill="white" opacity="0.8"/>
  <circle cx="250" cy="70" r="1.3" fill="white" opacity="0.9"/>
  <circle cx="30" cy="80" r="0.9" fill="white" opacity="0.75"/>
  <circle cx="150" cy="25" r="1" fill="white" opacity="0.85"/>

  <!-- Sun -->
  <circle cx="150" cy="200" r="50" fill="url(#sunGradientGlow)" />
  <circle cx="150" cy="200" r="30" fill="url(#sunGradientCore)" />

  <!-- Ground -->
  <path d="M0 300 L0 200 Q 50 185, 100 200 T 200 195 T 300 205 L300 300 Z" fill="url(#groundGradient)"/>
  <path d="M0 300 L0 210 Q 70 200, 150 215 T 300 200 L300 300 Z" fill="#B8860B" opacity="0.4"/> <!-- DarkGoldenrod for distant dune -->

  <!-- Cactus Shadow -->
  <ellipse cx="150" cy="221" rx="35" ry="7" fill="#000000" opacity="0.25"/>

  <!-- Cactus Body -->
  <g id="cactus-character">
    <!-- Right Arm (draw first to be slightly behind stem) -->
    <g transform="translate(180, 135) rotate(25)">
      <ellipse cx="0" cy="0" rx="15" ry="45" fill="url(#cactusBodyGradient)" stroke="#1A5E1A" stroke-width="1"/>
      <ellipse cx="0" cy="0" rx="15" ry="45" fill="url(#cactusSpinesPattern)" opacity="0.25"/>
    </g>
    
    <!-- Left Arm -->
    <g transform="translate(120, 145) rotate(-25)">
      <ellipse cx="0" cy="0" rx="15" ry="40" fill="url(#cactusBodyGradient)" stroke="#1A5E1A" stroke-width="1"/>
      <ellipse cx="0" cy="0" rx="15" ry="40" fill="url(#cactusSpinesPattern)" opacity="0.25"/>
    </g>

    <!-- Main Stem (draw last in body group to be on top at junctions) -->
    <ellipse cx="150" cy="155" rx="20" ry="65" fill="url(#cactusBodyGradient)" stroke="#1A5E1A" stroke-width="1"/>
    <ellipse cx="150" cy="155" rx="20" ry="65" fill="url(#cactusSpinesPattern)" opacity="0.25"/> <!-- Top at y=90, Bottom at y=220 -->
  </g>

  <!-- Top Hat -->
  <g id="top-hat" transform="translate(150, 89)"> <!-- Centered on cactus top (y=90), brim slightly overlapping -->
    <!-- Brim -->
    <ellipse cx="0" cy="0" rx="28" ry="8" fill="#282828" stroke="#111111" stroke-width="0.5"/>
    
    <!-- Crown -->
    <rect x="-18" y="-30" width="36" height="30" rx="2" ry="2" fill="#333333" stroke="#111111" stroke-width="0.5"/>
    <!-- Crown Top -->
    <ellipse cx="0" cy="-30" rx="18" ry="5" fill="#333333" stroke="#111111" stroke-width="0.5"/>
    <!-- Highlight on Crown -->
    <ellipse cx="-7" cy="-27" rx="9" ry="2" fill="#444444" opacity="0.8" transform="rotate(-15 -7 -27)"/>


    <!-- Ribbon -->
    <rect x="-19" y="-12" width="38" height="8" fill="#4A0000" /> <!-- Dark Red Ribbon -->
    <ellipse cx="-17.5" cy="-8" rx="2.5" ry="3.5" fill="#3A0000" /> <!-- Knot detail -->
  </g>

  <!-- Monocle -->
  <g id="monocle-group" transform="translate(162, 120)"> <!-- Monocle center (162,120) -->
    <!-- Chain - draw first to be behind lens -->
    <!-- Path from monocle rim (10,0) to hat band (approx global 169,80 -> relative 7, -40) -->
    <path d="M 9 1 Q 12 -18, 7 -38" stroke="#B8860B" stroke-width="1.2" fill="none"/>
    
    <!-- Lens -->
    <circle cx="0" cy="0" r="10" fill="#AFEEEE" fill-opacity="0.4" stroke="#B8860B" stroke-width="1.5"/> <!-- PaleTurquoise, DarkGoldenrod frame -->
    <!-- Highlight on lens -->
    <ellipse cx="-3.5" cy="-3.5" rx="4" ry="2.5" fill="white" fill-opacity="0.6" transform="rotate(-35 -3.5 -3.5)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini 2.5 Pro Preview 05-06 Player 2

Judge's Analysis

    Player 2's submission excels in creativity, technical execution, and visual appeal.

    The cactus is well-drawn with detailed texture and proportions, and the desert sunset features vibrant gradients and stars, enhancing the atmosphere.

    In contrast, Player 1's design is simpler and lacks the detailed background and polish seen in Player 2's submission.

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
20
Player 2
30
Rectangles

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

Player 1
3
Player 2
3
Circles

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

Player 1
7
Player 2
9
Ellipses

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

Player 1
1
Player 2
12
Lines

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

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

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

Player 1
2
Player 2
6

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

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

Player 1
17
Player 2
27
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

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