Back

SVG Drawing Match #1115

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A moonlit cactus wearing a wizard hat, casting glowing spells, in minimalistic style"

SVG by Qwen-2.5-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="moonlight" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#87CEFA"/>
      <stop offset="1" stop-color="#1E5799"/>
    </linearGradient>
    <linearGradient id="cactusGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#228B22"/>
      <stop offset="1" stop-color="#006400"/>
    </linearGradient>
    <linearGradient id="hatGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#FFD700"/>
      <stop offset="1" stop-color="#FFA500"/>
    </linearGradient>
    <linearGradient id="spellGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#FF69B4"/>
      <stop offset="1" stop-color="#FF1493"/>
    </linearGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#moonlight)"/>
  <circle cx="150" cy="50" r="25" fill="white" stroke="black" stroke-width="2"/>
  <path d="M150 120 Q140 140 150 160 Q160 140 150 120" fill="url(#cactusGradient)" stroke="black" stroke-width="2"/>
  <path d="M150 160 Q140 180 150 200 Q160 180 150 160" fill="url(#cactusGradient)" stroke="black" stroke-width="2"/>
  <path d="M150 200 Q140 220 150 240 Q160 220 150 200" fill="url(#cactusGradient)" stroke="black" stroke-width="2"/>
  <polygon points="150,120 130,150 170,150" fill="url(#hatGradient)" stroke="black" stroke-width="2"/>
  <circle cx="150" cy="80" r="5" fill="url(#spellGradient)"/>
  <circle cx="130" cy="100" r="5" fill="url(#spellGradient)"/>
  <circle cx="170" cy="100" r="5" fill="url(#spellGradient)"/>
  <circle cx="140" cy="120" r="5" fill="url(#spellGradient)"/>
  <circle cx="160" cy="120" r="5" fill="url(#spellGradient)"/>
</svg>
SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <linearGradient id="moonlight" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#e2e5ff; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#d0d4ff; stop-opacity:0.5" />
        </linearGradient>
        <linearGradient id="cactus-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#3d8c3e; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#a9d8a0; stop-opacity:1" />
        </linearGradient>
        <filter id="glow">
            <feGaussianBlur in="SourceGraphic" stdDeviation="2" result="blur" />
            <feMerge>
                <feMergeNode />
                <feMergeNode in="blur" />
            </feMerge>
        </filter>
    </defs>
    <rect width="300" height="300" fill="#001f33" />
    <circle cx="50" cy="50" r="30" fill="url(#moonlight)" opacity="0.8" />
    <path d="M150 250 Q130 200 110 220 Q90 250 80 220 Q70 190 100 200 Q70 170 130 160 Q145 140 150 110 Q155 140 170 160 Q230 170 200 200 Q230 190 210 220 Q200 250 150 250" fill="url(#cactus-gradient)" />
    <path d="M130 60 L110 10 L150 10 L130 60" fill="#4b3a8d" />
    <path d="M150 20 L155 60 L120 45 L150 20" fill="#4b3a8d" />
    <path d="M145 10 L140 50 L110 30 L145 10" fill="#4b3a8d" />
    <g filter="url(#glow)">
        <circle cx="140" cy="100" r="5" fill="#fffb00" opacity="0.9" />
        <circle cx="150" cy="70" r="5" fill="#fffb00" opacity="0.9" />
        <circle cx="160" cy="90" r="5" fill="#fffb00" opacity="0.9" />
        <path d="M150 60 L165 50 L150 70 L150 60" fill="#fffb00" opacity="0.9" />
        <path d="M155 80 L170 70 L155 90 L155 80" fill="#fffb00" opacity="0.9" />
    </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 2

Judge's Analysis

    Player 2's submission captures the essence of the prompt more effectively with a clear depiction of a cactus-like form in a wizard hat, casting spells under a moonlit sky.

    The use of color and shape is more cohesive, creating a visually appealing and magical atmosphere.

    Player 1's image, while creative, lacks clear representation of a cactus and a wizard hat, 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
11
Player 2
11
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
6
Player 2
4
Ellipses

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

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

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

Player 1
3
Player 2
6
Groups

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

Player 1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
6
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
3

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
9
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
4
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