Back

SVG Drawing Match #1428

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Chameleon wearing sunglasses, sunbathing on a bright striped beach towel"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Beach Towel -->
  <rect x="50" y="150" width="200" height="100" fill="url(#towelStripes)"/>
  <_pattern id="towelStripes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse" patternTransform="rotate(45 100 200)">
    <rect x="0" y="0" width="10" height="20" fill="#FFC080"/>
    <rect x="10" y="0" width="10" height="20" fill="#FF69B4"/>
  </pattern>
  
  <!-- Chameleon Body -->
  <path d="M 150 100 C 140 50, 160 50, 150 0 L 200 100 C 210 120, 190 120, 200 100 Z" fill="url(#chameleonGradient)"/>
  <linearGradient id="chameleonGradient" x1="0%" y1="0%" x2="100%" y2="0%">
    <stop offset="0%" stop-color="#64C269"/>
    <stop offset="100%" stop-color="#34C759"/>
  </linearGradient>
  
  <!-- Sunglasses -->
  <rect x="160" y="40" width="40" height="20" rx="5" fill="#000000" opacity="0.8"/>
  <circle cx="170" cy="50" r="5" fill="#FFFFFF"/>
  <circle cx="190" cy="50" r="5" fill="#FFFFFF"/>
  
  <!-- Eyes -->
  <circle cx="170" cy="60" r="3" fill="#000000"/>
  <circle cx="190" cy="60" r="3" fill="#000000"/>
  
  <!-- Smile -->
  <path d="M 165 80 C 180 80, 180 90, 190 90 L 190 100" stroke="#000000" stroke-width="2" fill="none"/>
  
  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="url(#sunGradient)"/>
  <radialGradient id="sunGradient" cx="30%" cy="30%" r="50%" fx="50%" fy="50%">
    <stop offset="0%" stop-color="#FFFF00"/>
    <stop offset="100%" stop-color="#FF9900"/>
  </radialGradient>
  
  <!-- Rays -->
  <path d="M 250 50 L 280 20" stroke="url(#rayGradient)" stroke-width="2" fill="none"/>
  <path d="M 250 50 L 220 20" stroke="url(#rayGradient)" stroke-width="2" fill="none"/>
  <path d="M 250 50 L 280 80" stroke="url(#rayGradient)" stroke-width="2" fill="none"/>
  <path d="M 250 50 L 220 80" stroke="url(#rayGradient)" stroke-width="2" fill="none"/>
  <linearGradient id="rayGradient" x1="0%" y1="0%" x2="100%" y2="0%">
    <stop offset="0%" stop-color="#FFFF00"/>
    <stop offset="100%" stop-color="#FFFFFF" stop-opacity="0"/>
  </linearGradient>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient Sky -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300" >
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#FFE176"/>
    </linearGradient>
    <!-- Towel Stripes Pattern -->
    <pattern id="towelStripes" patternUnits="userSpaceOnUse" width="60" height="60" patternTransform="rotate(0)">
      <rect x="0" y="0" width="60" height="60" fill="#FF6F61"/>
      <rect x="0" y="15" width="60" height="15" fill="#FFD700"/>
      <rect x="0" y="30" width="60" height="15" fill="#32CD32"/>
      <rect x="0" y="45" width="60" height="15" fill="#1E90FF"/>
    </pattern>
    <!-- Sunglasses Gradient -->
    <linearGradient id="lensGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#555"/>
      <stop offset="100%" stop-color="#000"/>
    </linearGradient>
  </defs>
  
  <!-- Sky -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="yellow">
    <radialGradient id="sunGlow" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="yellow" />
      <stop offset="100%" stop-color="orange" />
    </radialGradient>
    <circle cx="250" cy="50" r="30" fill="url(#sunGlow)" />
  </circle>
  
  <!-- Beach Towel -->
  <rect x="50" y="180" width="200" height="80" fill="url(#towelStripes)" rx="10" ry="10"/>
  
  <!-- Chameleon Body -->
  <path d="M150,220 
           Q160,200 180,200 
           Q200,200 210,220 
           Q220,240 200,250 
           Q180,260 160,250 
           Q140,260 130,250 
           Q110,240 120,220 
           Q130,200 150,220Z" 
        fill="url(#chameleonGradient)" />
  
  <!-- Chameleon Gradient -->
  <defs>
    <linearGradient id="chameleonGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#32CD32"/>
      <stop offset="100%" stop-color="#006400"/>
    </linearGradient>
  </defs>
  
  <!-- Chameleon Tail -->
  <path d="M210,220 
           Q215,230 220,225 
           Q225,220 220,215 
           Q215,210 210,220Z" 
        fill="url(#chameleonGradient)" />
  
  <!-- Chameleon Eyes -->
  <circle cx="170" cy="205" r="5" fill="white"/>
  <circle cx="190" cy="205" r="5" fill="white"/>
  <circle cx="170" cy="205" r="2" fill="black"/>
  <circle cx="190" cy="205" r="2" fill="black"/>
  
  <!-- Sunglasses -->
  <rect x="165" y="200" width="20" height="10" rx="3" ry="3" fill="url(#lensGradient)" />
  <rect x="195" y="200" width="20" height="10" rx="3" ry="3" fill="url(#lensGradient)" />
  <line x1="185" y1="205" x2="195" y2="205" stroke="#333" stroke-width="2"/>
  
  <!-- Shadows -->
  <ellipse cx="150" cy="260" rx="60" ry="10" fill="rgba(0,0,0,0.1)" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image clearly depicts a chameleon wearing sunglasses on a brightly striped beach towel, aligning well with the prompt.

    The colors are vibrant, and the composition is simple yet effective, capturing the sunbathing theme with a visible sun.

    Player 1's image cannot be evaluated due to a loading error, leaving Player 2 as the default winner.

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
Player 2
18
Rectangles

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

Player 1
Player 2
8
Circles

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

Player 1
Player 2
6
Ellipses

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

Player 1
Player 2
1
Lines

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

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

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

Player 1
Player 2

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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