Back

SVG Drawing Match #2656

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cactus wearing sunglasses on a skateboard under a rainbow."

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:#87CEFA"/> <!-- LightSkyBlue -->
      <stop offset="100%" style="stop-color:#E0FFFF"/> <!-- LightCyan, for horizon -->
    </linearGradient>
    <linearGradient id="cactusGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="10%" style="stop-color:#3A6B35"/> <!-- Darker Green -->
      <stop offset="50%" style="stop-color:#55A630"/> <!-- Medium Green -->
      <stop offset="90%" style="stop-color:#3A6B35"/>
    </linearGradient>
    <linearGradient id="woodGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#A0522D"/> <!-- Sienna -->
      <stop offset="50%" style="stop-color:#8B4513"/> <!-- SaddleBrown -->
      <stop offset="100%" style="stop-color:#A0522D"/>
    </linearGradient>
    <radialGradient id="lensGradient" cx="0.4" cy="0.4" r="0.7">
      <stop offset="0%" style="stop-color:#333333"/>
      <stop offset="100%" style="stop-color:#000000"/>
    </radialGradient>
  </defs>

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

  <!-- Rainbow -->
  <g id="rainbow" stroke-linecap="round" stroke-width="12" fill="none">
    <path d="M 20 150 A 130 130 0 0 1 280 150" stroke="#FF5050"/> <!-- Red -->
    <path d="M 32 150 A 118 118 0 0 1 268 150" stroke="#FFA520"/> <!-- Orange -->
    <path d="M 44 150 A 106 106 0 0 1 256 150" stroke="#FFFF40"/> <!-- Yellow -->
    <path d="M 56 150 A 94 94 0 0 1 244 150" stroke="#50C878"/>  <!-- Green -->
    <path d="M 68 150 A 82 82 0 0 1 232 150" stroke="#5080FF"/>  <!-- Blue -->
    <path d="M 80 150 A 70 70 0 0 1 220 150" stroke="#4B0082"/>  <!-- Indigo -->
    <path d="M 92 150 A 58 58 0 0 1 208 150" stroke="#8A2BE2"/>  <!-- Violet -->
  </g>

  <!-- Ground Shadow for Skateboard -->
  <ellipse cx="150" cy="253" rx="45" ry="6" fill="rgba(0,0,0,0.15)"/>

  <!-- Skateboard -->
  <g id="skateboardAssembly">
    <!-- Deck -->
    <rect x="110" y="230" width="80" height="12" rx="3" ry="3" fill="url(#woodGradient)" stroke="#4A2E1E" stroke-width="1"/>
    <!-- Trucks -->
    <rect x="125" y="237" width="10" height="8" fill="#A0A0A0" stroke="#707070" stroke-width="0.5" rx="1"/>
    <rect x="165" y="237" width="10" height="8" fill="#A0A0A0" stroke="#707070" stroke-width="0.5" rx="1"/>
    <!-- Wheels -->
    <g class="wheels">
      <circle cx="120" cy="245" r="6" fill="#404040" stroke="#202020" stroke-width="1"/>
      <circle cx="120" cy="245" r="2.5" fill="#707070"/>
      <circle cx="140" cy="245" r="6" fill="#404040" stroke="#202020" stroke-width="1"/>
      <circle cx="140" cy="245" r="2.5" fill="#707070"/>
      <circle cx="160" cy="245" r="6" fill="#404040" stroke="#202020" stroke-width="1"/>
      <circle cx="160" cy="245" r="2.5" fill="#707070"/>
      <circle cx="180" cy="245" r="6" fill="#404040" stroke="#202020" stroke-width="1"/>
      <circle cx="180" cy="245" r="2.5" fill="#707070"/>
    </g>
  </g>

  <!-- Cactus -->
  <g id="cactus">
    <!-- Main body -->
    <path d="M 140 230 L 140 165 C 140 150, 160 150, 160 165 L 160 230 Z" fill="url(#cactusGradient)" stroke="#285430" stroke-width="1.5"/>
    <!-- Left Arm -->
    <path d="M 140 195 C 112 198, 108 175, 120 162 C 128 170, 130 185, 140 190 Z" fill="url(#cactusGradient)" stroke="#285430" stroke-width="1.5"/>
    <!-- Right Arm -->
    <path d="M 160 195 C 188 198, 192 175, 180 162 C 172 170, 170 185, 160 190 Z" fill="url(#cactusGradient)" stroke="#285430" stroke-width="1.5"/>

    <!-- Cactus texture/spines -->
    <line x1="150" y1="155" x2="150" y2="228" stroke="#2A5B2F" stroke-width="0.8" stroke-linecap="round"/>
    <line x1="144.5" y1="168" x2="144.5" y2="228" stroke="#2A5B2F" stroke-width="0.8" stroke-linecap="round"/>
    <line x1="155.5" y1="168" x2="155.5" y2="228" stroke="#2A5B2F" stroke-width="0.8" stroke-linecap="round"/>
    <path d="M 122 168 C 123 175, 123 180, 121 185" fill="none" stroke="#2A5B2F" stroke-width="0.8" stroke-linecap="round"/>
    <path d="M 128 166 C 129 173, 129 178, 127 183" fill="none" stroke="#2A5B2F" stroke-width="0.8" stroke-linecap="round"/>
    <path d="M 178 168 C 177 175, 177 180, 179 185" fill="none" stroke="#2A5B2F" stroke-width="0.8" stroke-linecap="round"/>
    <path d="M 172 166 C 171 173, 171 178, 173 183" fill="none" stroke="#2A5B2F" stroke-width="0.8" stroke-linecap="round"/>

    <!-- Sunglasses -->
    <g id="sunglasses" transform="translate(0, -2)"> <!-- Slightly adjust vertical position -->
      <rect x="132" y="160" width="15" height="10" rx="3" ry="3" fill="url(#lensGradient)" stroke="black" stroke-width="1.5"/>
      <rect x="153" y="160" width="15" height="10" rx="3" ry="3" fill="url(#lensGradient)" stroke="black" stroke-width="1.5"/>
      <path d="M 147 162.5 h 6" stroke="black" stroke-width="2.5"/> <!-- Bridge -->
      <line x1="132" y1="163" x2="125" y2="165" stroke="black" stroke-width="2"/>
      <line x1="168" y1="163" x2="175" y2="165" stroke="black" stroke-width="2"/>
      <!-- Reflection on lenses -->
      <path d="M 134.5 162.5 Q 137.5 161.5 140.5 165.5" fill="none" stroke="rgba(255,255,255,0.5)" stroke-width="1.2"/>
      <path d="M 155.5 162.5 Q 158.5 161.5 161.5 165.5" fill="none" stroke="rgba(255,255,255,0.5)" stroke-width="1.2"/>
    </g>
  </g>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#87CEEB" />
      <stop offset="100%" stop-color="#FFD700" />
    </linearGradient>
    <linearGradient id="rainbowGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#FF0000" />
      <stop offset="25%" stop-color="#FF7F00" />
      <stop offset="50%" stop-color="#FFFF00" />
      <stop offset="75%" stop-color="#00FF00" />
      <stop offset="100%" stop-color="#0000FF" />
    </linearGradient>
    <linearGradient id="cactusGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#228B22" />
      <stop offset="100%" stop-color="#006400" />
    </linearGradient>
    <linearGradient id="skateboardGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#8B4513" />
      <stop offset="100%" stop-color="#A0522D" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <path d="M0,200 Q150,100 300,200 L300,300 L0,300 Z" fill="#8B4513" />
  <ellipse cx="150" cy="250" rx="100" ry="20" fill="url(#skateboardGradient)" />
  <rect x="120" y="180" width="60" height="70" fill="url(#cactusGradient)" rx="10" />
  <circle cx="150" cy="150" r="40" fill="url(#cactusGradient)" />
  <rect x="130" cy="140" width="40" height="20" fill="#000" rx="5" />
  <rect x="130" cy="140" width="40" height="10" fill="#808080" rx="5" />
  <path d="M100,100 Q150,50 200,100" fill="none" stroke="url(#rainbowGradient)" stroke-width="10" />
  <circle cx="120" cy="140" r="10" fill="#000" />
  <circle cx="180" cy="140" r="10" fill="#000" />
  <path d="M120,140 Q150,160 180,140" fill="none" stroke="#808080" stroke-width="2" />
</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 adheres more closely to the prompt by clearly depicting a cactus wearing sunglasses on a skateboard under a vibrant rainbow.

    The composition is visually appealing, technically well-executed, and demonstrates creativity in combining the elements.

    Player 2's submission is less detailed and does not clearly represent a cactus or a skateboard, making it less aligned with 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
37
Player 2
11
Rectangles

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

Player 1
6
Player 2
4
Circles

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

Player 1
8
Player 2
3
Ellipses

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

Player 1
1
Player 2
1
Lines

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

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

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
31
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
17
Player 2
13

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