Back

SVG Drawing Match #2466

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cactus wearing sunglasses in a desert during a colorful sunset."

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Sunset Background -->
  <defs>
    <linearGradient id="sunset" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ff7f50;stop-opacity:1" />
      <stop offset="30%" style="stop-color:#ff6b6b;stop-opacity:1" />
      <stop offset="60%" style="stop-color:#ff8c69;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff9a9e;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="cactus" cx="150" cy="150" r="80" fx="150" fy="150">
      <stop offset="0%" style="stop-color:#4aa564;stop-opacity:1" />
      <stop offset="70%" style="stop-color:#3d8b40;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#2d6a2d;stop-opacity:1" />
    </radialGradient>
  </defs>

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

  <!-- Desert Ground -->
  <path d="M0 300 Q150 250 300 300 L300 300 L300 0 L0 0 L0 300" fill="#d4c391" />
  <clipPath id="ground">
    <path d="M0 300 Q150 250 300 300 L300 300 L300 0 L0 0 L0 300" />
  </clipPath>

  <!-- Cactus -->
  <g transform="translate(150,200)">
    <path d="M0 0 Q40 -40 80 0 Q120 -40 160 0 Q200 -40 240 0 Q280 -40 320 0 L320 80 Q280 120 240 80 Q200 120 160 80 Q120 120 80 80 Q40 120 0 80 L0 0" fill="url(#cactus)" />
    <path d="M100 -40 Q120 -20 140 -40 L140 -80 Q120 -60 100 -80 L100 -40" fill="#4aa564" />
  </g>

  <!-- Sunglasses -->
  <g transform="translate(140,130)">
    <circle cx="0" cy="0" r="20" fill="#333" />
    <circle cx="40" cy="0" r="20" fill="#333" />
    <rect x="-20" y="-30" width="60" height="10" fill="#666" />
    <path d="M-10 -40 Q0 -30 10 -40 L10 -50 Q0 -40 -10 -50 L-10 -40" fill="#fff" />
    <path d="M30 -40 Q40 -30 30 -50 L30 -40" fill="#fff" />
  </g>

  <!-- Stars -->
  <g fill="#fff">
    <circle cx="50" cy="50" r="1" />
    <circle cx="100" cy="70" r="1" />
    <circle cx="150" cy="30" r="1" />
    <circle cx="200" cy="60" r="1" />
    <circle cx="250" cy="40" r="1" />
  </g>

  <!-- Moon -->
  <path d="M220 50 Q230 40 220 30 Q210 40 220 50" fill="#fff" stroke="#666" stroke-width="2" fill-rule="evenodd" />

  <!-- Rocks -->
  <g transform="translate(180,250)" opacity="0.8">
    <path d="M0 0 Q10 -10 20 0 Q30 -10 40 0 Q30 10 20 20 L0 10" fill="#664400" />
    <path d="M0 0 Q5 -5 10 0 Q15 -5 20 0 Q15 5 10 10 L0 5" fill="#554400" />
  </g>

  <!-- Silhouette Birds -->
  <g transform="translate(100,100)" opacity="0.3">
    <path d="M0 0 Q10 -5 20 0 L20 5 L0 5" fill="#333" />
    <path d="M50 0 Q60 -5 70 0 L70 5 L50 5" fill="#333" />
  </g>
</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:#0d0221; stop-opacity:1" /> <!-- Darkest Space Blue/Purple -->
            <stop offset="20%" style="stop-color:#24103A; stop-opacity:1" /> <!-- Deep Purple -->
            <stop offset="40%" style="stop-color:#6D214F; stop-opacity:1" /> <!-- Rich Magenta/Wine -->
            <stop offset="60%" style="stop-color:#E05297; stop-opacity:1" /> <!-- Bright Pink/Rose -->
            <stop offset="80%" style="stop-color:#F87E7B; stop-opacity:1" /> <!-- Coral/Orange-Pink -->
            <stop offset="100%" style="stop-color:#F9D423; stop-opacity:1" /> <!-- Golden Yellow at horizon -->
        </linearGradient>
        <radialGradient id="sunGradient" cx="0.5" cy="0.8" r="0.7">
            <stop offset="0%" style="stop-color:#FFF8DC; stop-opacity:1" /> <!-- Cornsilk white center -->
            <stop offset="60%" style="stop-color:#FFDA77; stop-opacity:1" /> <!-- Light yellow -->
            <stop offset="100%" style="stop-color:#FFA500; stop-opacity:0.6" /> <!-- Orange, slightly transparent edge -->
        </radialGradient>
        <linearGradient id="cactusGradient" x1="0%" y1="0%" x2="100%" y2="0%">
            <stop offset="0%" style="stop-color:#4CAF50;" /> <!-- Medium Green Edge -->
            <stop offset="30%" style="stop-color:#8BC34A;" /> <!-- Lighter Green Center -->
            <stop offset="70%" style="stop-color:#8BC34A;" /> <!-- Lighter Green Center -->
            <stop offset="100%" style="stop-color:#4CAF50;" /> <!-- Medium Green Edge -->
        </linearGradient>
        <linearGradient id="lensReflection" x1="0%" y1="0%" x2="100%" y2="0%"> <!-- Horizontal reflection -->
            <stop offset="0%" stop-color="#F87E7B" stop-opacity="0.75"/> <!-- Orangey Pink from sunset -->
            <stop offset="35%" stop-color="#F9D423" stop-opacity="0.65"/> <!-- Yellow from sunset -->
            <stop offset="70%" stop-color="#E05297" stop-opacity="0.55"/> <!-- Pink from sunset -->
            <stop offset="100%" stop-color="#6D214F" stop-opacity="0.65"/> <!-- Magenta from sunset -->
        </linearGradient>
        <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
            <feGaussianBlur stdDeviation="3.5" result="coloredBlur"/>
            <feMerge>
                <feMergeNode in="coloredBlur"/>
                <feMergeNode in="SourceGraphic"/>
            </feMerge>
        </filter>
    </defs>

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

    <!-- Sun -->
    <circle cx="70" cy="175" r="35" fill="url(#sunGradient)" filter="url(#glow)"/>

    <!-- Desert Dunes -->
    <path d="M0,300 L0,200 Q75,160 150,200 T300,180 L300,300 Z" fill="#C19A6B" /> 
    <path d="M0,300 L0,230 Q90,190 180,235 T300,210 L300,300 Z" fill="#A07855" /> 
    <path d="M0,300 L0,250 Q100,220 200,260 T300,240 L300,300 Z" fill="#8B5E3C" /> 
    
    <!-- Cactus Group -->
    <g id="cactusContainer" transform="translate(0, -10)"> <!-- Overall cactus group for positioning -->
        <!-- Cactus Shadow -->
        <ellipse cx="150" cy="282" rx="35" ry="8" fill="#000000" opacity="0.25" />

        <g id="cactus"> <!-- Cactus parts -->
            <!-- Main Body -->
            <path d="M130,280 C125,200 125,120 135,100 L165,100 C175,120 175,200 170,280 Z" fill="url(#cactusGradient)" />
            <!-- Left Arm -->
            <path d="M132,180 C100,175 80,140 90,110 C95,100 110,100 115,120 L125,135 C120,155 128,175 132,180 Z" fill="url(#cactusGradient)" />
            <!-- Right Arm -->
            <path d="M168,170 C190,165 210,130 200,100 C195,90 180,90 175,110 L168,125 C175,145 172,165 168,170 Z" fill="url(#cactusGradient)" />

            <!-- Cactus Texture Lines -->
            <g stroke="#38761D" stroke-width="1.5" stroke-linecap="round" fill="none" opacity="0.6">
                <!-- Main Body Texture -->
                <path d="M138,270 Q137,180 140,110" />
                <path d="M150,275 Q150,180 150,105" />
                <path d="M162,270 Q163,180 160,110" />
                <!-- Left Arm Texture -->
                <path d="M128,170 Q110,150 98,120" /> 
                <path d="M120,160 Q115,140 105,125" />
                <!-- Right Arm Texture -->
                <path d="M172,160 Q180,145 192,115" />
                <path d="M178,150 Q175,135 188,110" />
            </g>
        </g>

        <!-- Sunglasses -->
        <g id="sunglasses" transform="translate(150, 125) rotate(-3)"> <!-- Positioned on cactus "face" -->
            <!-- Frame -->
            <path d="M-38,0 
                     C-45,-18 -35,-28 -18,-28 
                     L18,-28 
                     C35,-28 45,-18 38,0 
                     C45,18 35,28 18,28 
                     L-18,28 
                     C-35,28 -45,18 -38,0 Z" 
                  fill="#1A1A1A" stroke="#0D0D0D" stroke-width="1"/>
            
            <!-- Left Lens -->
            <ellipse cx="-19" cy="0" rx="15" ry="11" fill="#2C2C2C"/> <!-- Base dark color -->
            <ellipse cx="-19" cy="0" rx="14.5" ry="10.5" fill="url(#lensReflection)"/> <!-- Reflection overlay -->

            <!-- Right Lens -->
            <ellipse cx="19" cy="0" rx="15" ry="11" fill="#2C2C2C"/> <!-- Base dark color -->
            <ellipse cx="19" cy="0" rx="14.5" ry="10.5" fill="url(#lensReflection)"/> <!-- Reflection overlay -->
        </g>
    </g>
    
    <!-- Optional: Distant subtle desert details -->
    <ellipse cx="40" cy="210" rx="10" ry="4" fill="#7A5C58" opacity="0.3" transform="rotate(-15 40 210)"/>
    <ellipse cx="250" cy="195" rx="12" ry="5" fill="#6C4F4B" opacity="0.25" transform="rotate(10 250 195)"/>
    <path d="M270,230 Q275,225 280,230 L278,235 Q273,238 270,235 Z" fill="#8B6F61" opacity="0.2"/>
</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 is more detailed and adheres closely to the prompt.

    The cactus is clearly depicted with sunglasses, set against a vibrant and colorful sunset in a desert landscape.

    In contrast, Player 1's image is abstract and lacks clear representation of the prompt elements, making it less effective in execution and visual appeal.

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

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

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

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

Player 1
5
Player 2
4

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
4
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
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
1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
2
Player 2
5
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
15

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

Complexity Metrics

Path Commands

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

Player 1
57
Player 2
62
Max Group Nesting

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

Player 1
Player 2
2
Defs Elements

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

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