Back

SVG Drawing Match #2623

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A chameleon blending into a vibrant plaid pattern."

SVG by o4-mini medium (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <pattern id="plaidPattern" patternUnits="userSpaceOnUse" width="40" height="40">
      <rect width="40" height="40" fill="#ffeb3b"/>
      <path d="M0 0 L40 0" stroke="#e91e63" stroke-width="8"/>
      <path d="M0 40 L40 40" stroke="#e91e63" stroke-width="8"/>
      <path d="M0 0 L0 40" stroke="#00bcd4" stroke-width="8"/>
      <path d="M40 0 L40 40" stroke="#00bcd4" stroke-width="8"/>
      <path d="M0 20 L40 20" stroke="#4caf50" stroke-width="4"/>
      <path d="M20 0 L20 40" stroke="#ff9800" stroke-width="4"/>
    </pattern>
    <radialGradient id="bodyShine" cx="0.5" cy="0.4" r="0.6">
      <stop offset="0%" stop-color="#fff" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="#fff" stop-opacity="0"/>
    </radialGradient>
    <filter id="shadow" x="-20%" y="-20%" width="140%" height="140%">
      <feDropShadow dx="3" dy="3" stdDeviation="3" flood-color="#000" flood-opacity="0.4"/>
    </filter>
  </defs>

  <!-- Plaid background -->
  <rect width="300" height="300" fill="url(#plaidPattern)"/>

  <!-- Chameleon group with shadow -->
  <g filter="url(#shadow)">
    <!-- Body -->
    <ellipse cx="150" cy="160" rx="80" ry="40" fill="url(#plaidPattern)" stroke="#333" stroke-width="2"/>
    <!-- Head -->
    <circle cx="90" cy="140" r="30" fill="url(#plaidPattern)" stroke="#333" stroke-width="2"/>
    <!-- Tail -->
    <path d="M220,180 C240,200 260,230 230,250 C200,270 180,240 200,220 C220,200 240,210 230,230"
          fill="url(#plaidPattern)" stroke="#333" stroke-width="2"/>
    <!-- Front leg -->
    <path d="M130,150 C120,160 110,170 120,180" fill="none" stroke="#333" stroke-width="6"/>
    <!-- Back leg -->
    <path d="M175,150 C185,160 195,170 185,180" fill="none" stroke="#333" stroke-width="6"/>
    <!-- Body highlight -->
    <ellipse cx="150" cy="145" rx="50" ry="20" fill="url(#bodyShine)" opacity="0.5"/>
  </g>

  <!-- Eye -->
  <circle cx="90" cy="140" r="10" fill="#fff"/>
  <circle cx="90" cy="140" r="5" fill="#000"/>
  <circle cx="94" cy="136" r="2" fill="#fff"/>
</svg>
SVG by o4-mini low (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Plaid pattern definition -->
    <pattern id="plaid" width="40" height="40" patternUnits="userSpaceOnUse">
      <rect width="40" height="40" fill="#f5f"/>
      <path d="M0 0 L40 0" stroke="#0ff" stroke-width="8"/>
      <path d="M0 40 L40 40" stroke="#0ff" stroke-width="8"/>
      <path d="M0 0 L0 40" stroke="#ff0" stroke-width="8"/>
      <path d="M40 0 L40 40" stroke="#ff0" stroke-width="8"/>
      <path d="M20 0 L20 40" stroke="#09f" stroke-width="4"/>
      <path d="M0 20 L40 20" stroke="#09f" stroke-width="4"/>
    </pattern>
    <!-- Gradient shading for chameleon -->
    <radialGradient id="chamGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="white" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="black" stop-opacity="0.4"/>
    </radialGradient>
    <!-- Clip path for chameleon silhouette -->
    <clipPath id="chamClip">
      <path d="M180,140 
               c30,-20 50,0 40,30
               c5,20 -10,40 -40,35
               c0,15 -20,20 -30,10
               c-10,10 -40,0 -45,-20
               c-30,5 -25,-40 0,-50
               c5,-20 20,-20 25,-15
               c10,-20 20,-10 30,-25
               z"/>
    </clipPath>
  </defs>

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

  <!-- Chameleon blending -->
  <g clip-path="url(#chamClip)">
    <!-- Underlying plaid shifted for the chameleon -->
    <rect x="140" y="100" width="120" height="120" fill="url(#plaid)" patternTransform="translate(-40,-30) rotate(10 200 160)"/>
    <!-- Overlay gradient shading for form -->
    <rect x="140" y="100" width="120" height="120" fill="url(#chamGrad)" />
  </g>

  <!-- Eye detail -->
  <g transform="translate(210,155)">
    <circle r="12" fill="#fff" />
    <circle r="6" fill="#333" />
    <circle r="3" fill="url(#chamGrad)" />
  </g>

  <!-- Subtle contour lines -->
  <path d="M180,140 
           c30,-20 50,0 40,30
           c5,20 -10,40 -40,35
           c0,15 -20,20 -30,10
           c-10,10 -40,0 -45,-20
           c-30,5 -25,-40 0,-50
           c5,-20 20,-20 25,-15
           c10,-20 20,-10 30,-25
           z"
        fill="none" stroke="#333" stroke-width="2" opacity="0.6"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini medium (2025-04-16) Player 1

Judge's Analysis

    Player 1's submission demonstrates better adherence to the prompt with a more recognizable chameleon shape blending into the vibrant plaid pattern.

    The composition successfully integrates the chameleon into the background while maintaining a clear outline.

    While Player 2's submission is creative, the chameleon shape is less defined, making the blending less effective and visually compelling.

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
17
Player 2
15
Rectangles

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

Player 1
2
Player 2
4
Circles

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

Player 1
4
Player 2
3
Ellipses

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

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

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

Player 1
1
Player 2
2

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
1
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with opacity attributes in the SVG.

Player 1
1
Player 2
1
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
11
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
8

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
1

Complexity Metrics

Path Commands

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

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