Back

SVG Drawing Match #2063

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Chameleon blending into a giant cosmic snail shell"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="galaxy" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#6a5acd; stop-opacity:1" />
      <stop offset="50%" style="stop-color:#ff69b4; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00bfff; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="shellGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#ffde00; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#f0e68c; stop-opacity:1" />
    </radialGradient>
    <pattern id="cosmicStars" patternUnits="userSpaceOnUse" width="8" height="8">
      <circle cx="1" cy="1" r="1" fill="#ffffff" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#galaxy)" />
  <g transform="translate(50, 150)">
    <path d="M120,0 C80,-50 20,-50 0,0 C20,50 80,50 120,0 Z" fill="url(#shellGradient)" stroke="#d3d3d3" stroke-width="2"/>
    <path d="M70,-2 C68,-12 50,-12 50,-2 C50,8 68,8 70,-2 Z" fill="url(#shellGradient)" transform="translate(20, 0)" />
    <path d="M95,-2 C93,-12 75,-12 75,-2 C75,8 93,8 95,-2 Z" fill="url(#shellGradient)" transform="translate(60, 0)" />
    <g transform="translate(60, -30) scale(0.5)">
      <path d="M0,50 C20,20 50,20 30,40 C50,50 30,80 0,50" fill="#2e8b57" stroke="#228b22" stroke-width="4"/>
      <ellipse cx="50" cy="20" rx="10" ry="5" fill="#4caf50" />
      <circle cx="23" cy="38" r="4" fill="#000" />
      <circle cx="43" cy="45" r="4" fill="#000" />
    </g>
  </g>
  <g transform="translate(175, 150)">
    <circle cx="0" cy="0" r="40" fill="url(#cosmicStars)" />
    <circle cx="15" cy="10" r="5" fill="#ff4500" opacity="0.6" />
    <circle cx="-10" cy="-20" r="3" fill="#ff4500" opacity="0.6" />
    <circle cx="25" cy="-5" r="4" fill="#ff4500" opacity="0.6" />
  </g>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="chameleonGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#2ECC71"/>
      <stop offset="50%" stop-color="#F1C40F"/>
      <stop offset="100%" stop-color="#E74C3C"/>
    </linearGradient>
    <radialGradient id="snailShellGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#3498DB"/>
      <stop offset="100%" stop-color="#9B59B6"/>
    </radialGradient>
  </defs>
  <path d="M150,50 C200,50 250,100 250,150 C250,200 200,250 150,250 C100,250 50,200 50,150 C50,100 100,50 150,50" fill="url(#snailShellGradient)" />
  <path d="M180,120 Q180,140 200,150 Q220,160 230,160 Q240,160 240,150 Q240,140 220,130 Q200,120 180,120" fill="url(#chameleonGradient)" />
  <path d="M120,180 Q140,180 150,160 Q160,140 160,120 Q160,100 140,80 Q120,60 100,60 Q80,60 80,80 Q80,100 100,120 Q120,140 120,160 Z" fill="url(#chameleonGradient)" />
  <circle cx="150" cy="150" r="100" fill="none" stroke="url(#snailShellGradient)" stroke-width="10" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 2

Judge's Analysis

    Player 2's submission creatively integrates the chameleon into the cosmic snail shell, effectively using gradient colors to blend the chameleon with the cosmic theme.

    The image has a cohesive and appealing composition with smooth transitions and a clear depiction of the prompt.

    Player 1's submission, while colorful, lacks clarity and the concept of the chameleon blending into the cosmic snail shell is less discernible.

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

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

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

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
2
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
5

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
5
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
15
Player 2
20
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
3
Player 2
2
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