Back

SVG Drawing Match #2663

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cactus wearing sunglasses in the middle of a desert during a pink sunset."

SVG by Gemini 2.5 Pro Preview 05-06
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sunsetSky" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#4B0082; stop-opacity:1" /> <!-- Indigo -->
      <stop offset="25%" style="stop-color:#8A2BE2; stop-opacity:1" /> <!-- BlueViolet -->
      <stop offset="50%" style="stop-color:#DB7093; stop-opacity:1" /> <!-- PaleVioletRed -->
      <stop offset="75%" style="stop-color:#FF7F50; stop-opacity:1" /> <!-- Coral -->
      <stop offset="100%" style="stop-color:#FFD700; stop-opacity:1" /> <!-- Gold -->
    </linearGradient>

    <radialGradient id="sunCore" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#FFFACD; stop-opacity:1" /> <!-- LemonChiffon -->
      <stop offset="60%" style="stop-color:#FFDA89; stop-opacity:0.9" /> <!-- Lighter Gold -->
      <stop offset="100%" style="stop-color:#FFA500; stop-opacity:0.7" /> <!-- Orange -->
    </radialGradient>

    <linearGradient id="dunesGradientFront" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#D2B48C;" /> <!-- Tan -->
      <stop offset="50%" style="stop-color:#BC8F8F;" /> <!-- RosyBrown -->
      <stop offset="100%" style="stop-color:#A0522D;" /> <!-- Sienna (darker shadow) -->
    </linearGradient>
    
    <linearGradient id="dunesGradientMid" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#F0E68C;" /> <!-- Khaki -->
      <stop offset="50%" style="stop-color:#E9967A;" /> <!-- DarkSalmon (pinkish) -->
      <stop offset="100%" style="stop-color:#CD853F;" /> <!-- Peru -->
    </linearGradient>

    <linearGradient id="dunesGradientBack" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FFEFD5;" /> <!-- PapayaWhip (lightest) -->
      <stop offset="40%" style="stop-color:#FFDAB9;" /> <!-- PeachPuff -->
      <stop offset="100%" style="stop-color:#FFA07A;" /> <!-- LightSalmon -->
    </linearGradient>

    <linearGradient id="cactusFill" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#2E6B2E;" /> <!-- Darker Forest Green -->
      <stop offset="50%" style="stop-color:#55AE55;" /> <!-- Medium Green -->
      <stop offset="100%" style="stop-color:#2E6B2E;" />
    </linearGradient>
    
    <linearGradient id="lensReflection" x1="0%" y1="0%" x2="80%" y2="100%">
      <stop offset="0%" style="stop-color:rgba(255,182,193,0.5);" /> <!-- LightPink reflection -->
      <stop offset="50%" style="stop-color:rgba(255,165,0,0.3);" /> <!-- Orange reflection -->
      <stop offset="100%" style="stop-color:rgba(30,30,30,0.8);" />   <!-- Dark base of lens -->
    </linearGradient>
  </defs>

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

  <!-- Stars -->
  <circle cx="60" cy="40" r="1.2" fill="white" opacity="0.7"/>
  <circle cx="90" cy="70" r="0.8" fill="white" opacity="0.6"/>
  <circle cx="150" cy="30" r="1.5" fill="white" opacity="0.8"/>
  <circle cx="220" cy="55" r="1" fill="white" opacity="0.75"/>
  <circle cx="260" cy="80" r="0.9" fill="white" opacity="0.65"/>

  <!-- Sun -->
  <circle cx="80" cy="195" r="30" fill="url(#sunCore)" opacity="0.95"/>
  
  <!-- Dunes -->
  <path d="M-10,210 C40,170 100,200 150,180 C200,160 260,190 310,170 L310,300 L-10,300 Z" fill="url(#dunesGradientBack)" />
  <path d="M-10,220 C60,190 120,230 180,200 C240,170 310,220 L310,300 L-10,300 Z" fill="url(#dunesGradientMid)" opacity="0.9" />
  <path d="M-10,235 C80,210 150,250 220,225 C270,200 310,240 L310,300 L-10,300 Z" fill="url(#dunesGradientFront)" opacity="0.95" />
  
  <!-- Cactus Shadow -->
  <ellipse cx="150" cy="263" rx="35" ry="7" fill="rgba(46,75,46,0.3)" />

  <!-- Cactus -->
  <g id="cactus"> 
    <!-- Main Trunk -->
    <path d="M140,260 L140,130 C140,105 160,105 160,130 L160,260 Z" 
          fill="url(#cactusFill)" stroke="#1B4D3E" stroke-width="2" stroke-linejoin="round" stroke-linecap="round"/>
    <!-- Left Arm -->
    <path d="M140.5,185 C105,185 90,170 95,140 C98,128 112,125 118,138 C112,160 128,178 140.5,180 Z" 
          fill="url(#cactusFill)" stroke="#1B4D3E" stroke-width="2" stroke-linejoin="round" stroke-linecap="round"/>
    <!-- Right Arm -->
    <path d="M159.5,185 C195,185 210,170 205,140 C202,128 188,125 182,138 C188,160 172,178 159.5,180 Z" 
          fill="url(#cactusFill)" stroke="#1B4D3E" stroke-width="2" stroke-linejoin="round" stroke-linecap="round"/>

    <!-- Ribs/Details -->
    <path d="M150,258 V110" stroke="#6FAE79" stroke-width="1.2" fill="none" stroke-linecap="round"/>
    <path d="M144,255 V130 C144,118 146,110 150,108" stroke="#6FAE79" stroke-width="1" fill="none" stroke-linecap="round"/>
    <path d="M156,255 V130 C156,118 154,110 150,108" stroke="#6FAE79" stroke-width="1" fill="none" stroke-linecap="round"/>
    
    <path d="M106,140 C108,155 120,170 139,178" stroke="#6FAE79" stroke-width="1" fill="none" stroke-linecap="round"/>
    <path d="M194,140 C192,155 180,170 161,178" stroke="#6FAE79" stroke-width="1" fill="none" stroke-linecap="round"/>

    <!-- Sunglasses -->
    <g id="sunglasses" transform="translate(150, 123)">
        <path d="M-26,-12 
                 L-26,0 Q-26,5 -20,5 L-10,5 Q-5,5 -5,0 L-5,-12 Q-5,-17 -10,-17 L-20,-17 Q-26,-17 -26,-12 Z
                 M26,-12
                 L26,0 Q26,5 20,5 L10,5 Q5,5 5,0 L5,-12 Q5,-17 10,-17 L20,-17 Q26,-17 26,-12 Z"
              fill="#282828" stroke="#181818" stroke-width="1.5"/>
        <rect x="-24.5" y="-10.5" width="18" height="12" rx="3" ry="3" fill="url(#lensReflection)" />
        <rect x="6.5" y="-10.5" width="18" height="12" rx="3" ry="3" fill="url(#lensReflection)" />
        <path d="M-5.5,-8 Q0,-6 5.5,-8" stroke="#181818" stroke-width="2.5" fill="none"/>
    </g>
  </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Desert background -->
  <rect x="0" y="0" width="300" height="300" fill="#F7D9AA" />
  
  <!-- Sun -->
  <circle cx="250" cy="50" r="35" fill="#F9A8D4" />
  <circle cx="250" cy="50" r="50" fill="none" stroke="#F9A8D4" stroke-width="3" />
  
  <!-- Pink sunset gradient -->
  <defs>
    <linearGradient id="sunsetGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#F9A8D4" />
      <stop offset="100%" stop-color="#E73827" />
    </linearGradient>
  </defs>
  <rect x="0" y="150" width="300" height="150" fill="url(#sunsetGradient)" />
  
  <!-- Cactus body -->
  <ellipse cx="150" cy="200" rx="20" ry="50" fill="#86B168" />
  
  <!-- Cactus arms -->
  <path d="M130,180 L115,220 L145,220 Z" fill="#86B168" />
  <path d="M170,180 L185,220 L155,220 Z" fill="#86B168" />
  
  <!-- Sunglasses frames -->
  <ellipse cx="150" cy="180" rx="40" ry="20" fill="#333" opacity="0.5" />
  <ellipse cx="150" cy="180" rx="38" ry="18" fill="none" stroke="#FFF" stroke-width="2" />
  
  <!-- Sunglasses lenses -->
  <ellipse cx="130" cy="180" rx="12" ry="15" fill="#88D8B0" />
  <ellipse cx="170" cy="180" rx="12" ry="15" fill="#88D8B0" />
  
  <!-- Reflection on sunglasses -->
  <circle cx="135" cy="175" r="5" fill="#FFF" opacity="0.8" />
  <circle cx="165" cy="175" r="5" fill="#FFF" opacity="0.8" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini 2.5 Pro Preview 05-06 Player 1

Judge's Analysis

    Player 1's submission clearly depicts a cactus wearing sunglasses in the middle of a desert during a pink sunset, adhering closely to the prompt.

    The gradient sunset background and the detailed cactus design contribute to its strong visual appeal and compositional strength.

    Player 2's submission is more abstract and less recognizable as a cactus in a desert scene, making it less effective in fulfilling the criteria of the prompt.

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

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

Player 1
3
Player 2
2
Circles

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

Player 1
6
Player 2
4
Ellipses

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
7

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
1
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
67
Player 2
8
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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