Back

SVG Drawing Match #925

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A zebra in a punk rock band, with a mohawk and electric guitar, in vibrant pop art style"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#FAD02E" />
  
  <!-- Mohawk -->
  <path d="M75 30 Q150 5 225 30 Q150 60 75 30" fill="#F80101" />
  <path d="M75 30 Q150 0 225 30 Q150 60 75 30" fill="#F80101" />

  <!-- Zebra body -->
  <ellipse cx="150" cy="150" rx="80" ry="110" fill="#000" />
  
  <!-- Zebra stripes -->
  <path d="M80 100 Q150 50 220 100 Q150 150 80 100" fill="#FFF" />
  <path d="M80 120 Q150 70 220 120 Q150 170 80 120" fill="#FFF" />
  <path d="M80 140 Q150 90 220 140 Q150 190 80 140" fill="#FFF" />
  
  <!-- Zebra head -->
  <circle cx="150" cy="70" r="30" fill="#000" />
  
  <!-- Zebra eye -->
  <circle cx="140" cy="65" r="5" fill="#FFF" />
  
  <!-- Mohawk stripes -->
  <rect x="136" y="20" width="8" height="30" fill="#F80101" />
  <rect x="156" y="20" width="8" height="30" fill="#F80101" />
   
  <!-- Electric guitar body -->
  <path d="M100 200 L160 200 L160 250 L100 250 Z" fill="#7FF213" />
  
  <!-- Electric guitar neck -->
  <rect x="160" y="200" width="20" height="60" fill="#000" />
  
  <!-- Electric guitar strings -->
  <line x1="165" y1="205" x2="165" y2="255" stroke="#FFF" stroke-width="1" />
  <line x1="170" y1="205" x2="170" y2="255" stroke="#FFF" stroke-width="1" />
  <line x1="175" y1="205" x2="175" y2="255" stroke="#FFF" stroke-width="1" />
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="mohawk" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#FF69B4" stop-opacity="1"/>
      <stop offset="0.5" stop-color="#FFC0CB" stop-opacity="1"/>
      <stop offset="1" stop-color="#FF69B4" stop-opacity="1"/>
    </linearGradient>
    <linearGradient id="guitar" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#33CC33" stop-opacity="1"/>
      <stop offset="0.5" stop-color="#66FF66" stop-opacity="1"/>
      <stop offset="1" stop-color="#33CC33" stop-opacity="1"/>
    </linearGradient>
    <pattern id="zebra" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="10" fill="#FFFFFF"/>
      <rect x="0" y="5" width="10" height="5" fill="#000000"/>
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="#F7F7F7"/>
  <circle cx="150" cy="150" r="120" fill="url(#zebra)"/>
  <path d="M150,50 L150,100 L170,120 L130,120 Z" fill="#FFFFFF"/>
  <path d="M150,50 L150,100" stroke="url(#mohawk)" stroke-width="10" fill="none"/>
  <rect x="120" y="140" width="60" height="20" fill="url(#guitar)"/>
  <rect x="130" y="160" width="40" height="10" fill="#000000"/>
  <circle cx="150" cy="170" r="10" fill="#000000"/>
  <path d="M150,180 L140,190 L160,190 Z" fill="#000000"/>
  <circle cx="150" cy="220" r="20" fill="#FF69B4"/>
  <circle cx="150" cy="220" r="10" fill="#FFFFFF"/>
  <text x="150" y="250" font-size="24" font-family="Arial" text-anchor="middle" fill="#000000">ROCK ON!</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.0 70B (8192) Player 2

Judge's Analysis

    Player 2's image more effectively represents the idea of a zebra in a punk rock band with a mohawk and electric guitar.

    The use of striped patterns creatively evokes a zebra's appearance, and the inclusion of elements like the mohawk and text emphasizes the punk theme.

    Player 1's submission lacks the clear representation and thematic elements necessary for 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
16
Player 2
12
Rectangles

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

Player 1
4
Player 2
5
Circles

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
7

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

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