Back

SVG Drawing Match #2483

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Two giraffes tangled in a game of jump rope using their necks under a disco ball."

SVG by o4-mini low (2025-04-16)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Background radial gradient -->
    <radialGradient id="bgGrad" cx="50%" cy="50%" r="80%">
      <stop offset="0%" stop-color="#1a1a2e"/>
      <stop offset="100%" stop-color="#0f3460"/>
    </radialGradient>
    <!-- Disco ball gradient -->
    <radialGradient id="ballGrad" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#e0e0e0"/>
      <stop offset="100%" stop-color="#888"/>
    </radialGradient>
    <!-- Giraffe spot pattern -->
    <pattern id="spots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect width="20" height="20" fill="#fdd835"/>
      <circle cx="6" cy="6" r="3" fill="#8d6e63"/>
      <circle cx="14" cy="14" r="4" fill="#8d6e63"/>
    </pattern>
    <!-- Rope gradient -->
    <linearGradient id="ropeGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ffeb3b"/>
      <stop offset="100%" stop-color="#f57f17"/>
    </linearGradient>
  </defs>

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

  <!-- Disco ball -->
  <g transform="translate(150,40)">
    <circle cx="0" cy="0" r="30" fill="url(#ballGrad)" stroke="#ccc" stroke-width="2" />
    <!-- reflective squares -->
    <g fill="#fff" opacity="0.6">
      <rect x="-20" y="-20" width="6" height="6" />
      <rect x="-5" y="-25" width="5" height="5" />
      <rect x="10" y="-18" width="4" height="4" />
      <rect x="-12" y="-5" width="4" height="4" />
      <rect x="5" y="0" width="5" height="5" />
      <rect x="-2" y="12" width="6" height="6" />
      <rect x="12" y="8" width="4" height="4" />
    </g>
    <!-- hanging chain -->
    <line x1="0" y1="-30" x2="0" y2="-60" stroke="#bbb" stroke-width="2" />
  </g>

  <!-- Rope path -->
  <path d="M50,200 C100,150 200,150 250,200" fill="none" stroke="url(#ropeGrad)" stroke-width="8" stroke-linecap="round" />

  <!-- Left giraffe -->
  <g transform="translate(70,220) scale(0.8,-0.8)">
    <!-- legs -->
    <path d="M0,0 v-40 l10,0 v40 M20,0 v-40 l10,0 v40" stroke="#5d4037" stroke-width="8" fill="none" />
    <!-- body -->
    <ellipse cx="20" cy="-60" rx="25" ry="15" fill="url(#spots)" stroke="#5d4037" stroke-width="4" />
    <!-- neck -->
    <path d="M25,-45 c5,-60 20,-80 30,-100" stroke="#fdd835" stroke-width="12" fill="none" stroke-linecap="round" />
    <!-- head -->
    <g transform="translate(55,-145)">
      <ellipse cx="0" cy="0" rx="12" ry="8" fill="url(#spots)" stroke="#5d4037" stroke-width="3" />
      <circle cx="-5" cy="-2" r="2" fill="#000" />
      <circle cx="2" cy="-3" r="2" fill="#000" />
      <path d="M-4,3 q4,3 8,0" stroke="#000" stroke-width="1" fill="none" />
      <!-- horns -->
      <line x1="-4" y1="-8" x2="-6" y2="-14" stroke="#5d4037" stroke-width="2" />
      <line x1="4" y1="-8" x2="6" y2="-14" stroke="#5d4037" stroke-width="2" />
    </g>
  </g>

  <!-- Right giraffe -->
  <g transform="translate(230,220) scale(-0.8,-0.8)">
    <!-- legs -->
    <path d="M0,0 v-40 l10,0 v40 M20,0 v-40 l10,0 v40" stroke="#4e342e" stroke-width="8" fill="none" />
    <!-- body -->
    <ellipse cx="20" cy="-60" rx="25" ry="15" fill="url(#spots)" stroke="#4e342e" stroke-width="4" />
    <!-- neck -->
    <path d="M25,-45 c5,-50 10,-70 20,-90" stroke="#fdd835" stroke-width="12" fill="none" stroke-linecap="round" />
    <!-- head -->
    <g transform="translate(45,-135)">
      <ellipse cx="0" cy="0" rx="12" ry="8" fill="url(#spots)" stroke="#4e342e" stroke-width="3" />
      <circle cx="-4" cy="-2" r="2" fill="#000" />
      <circle cx="3" cy="-3" r="2" fill="#000" />
      <path d="M-4,3 q4,3 8,0" stroke="#000" stroke-width="1" fill="none" />
      <!-- horns -->
      <line x1="-4" y1="-8" x2="-6" y2="-14" stroke="#4e342e" stroke-width="2" />
      <line x1="4" y1="-8" x2="6" y2="-14" stroke="#4e342e" stroke-width="2" />
    </g>
  </g>

  <!-- Rope wrap highlights -->
  <path d="M55,195 C110,160 190,160 245,195" fill="none" stroke="#fff" stroke-width="2" stroke-dasharray="4,4" opacity="0.5"/>
</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="giraffeColor" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#FFD700; stop-opacity:1"/>
            <stop offset="100%" style="stop-color:#FFA500; stop-opacity:1"/>
        </linearGradient>
        <radialGradient id="ballGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
            <stop offset="0%" style="stop-color:#FFFFFF; stop-opacity:1"/>
            <stop offset="100%" style="stop-color:#FF69B4; stop-opacity:1"/>
        </radialGradient>
    </defs>
    <rect width="100%" height="100%" fill="#87CEEB"/>
    <circle cx="150" cy="50" r="30" fill="url(#ballGradient)" />
    <line x1="150" y1="20" x2="150" y2="40" stroke="#FFD700" stroke-width="3" stroke-dasharray="5,5" />
    <line x1="150" y1="35" x2="150" y2="45" stroke="#FFD700" stroke-width="3" />

    <g transform="translate(80, 200)">
        <path d="M20 0 C-10 -40, -10 -70, 20 -100 C50 -70, 50 -40, 20 0" fill="url(#giraffeColor)" />
        <path d="M20 0 C-20 10, -20 40, 20 50 C60 40, 60 10, 20 0" fill="#FFF" />
        <circle cx="20" cy="-90" r="5" fill="#000" />
    </g>

    <g transform="translate(200, 200) scale(-1, 1)">
        <path d="M20 0 C-10 -40, -10 -70, 20 -100 C50 -70, 50 -40, 20 0" fill="url(#giraffeColor)" />
        <path d="M20 0 C-20 10, -20 40, 20 50 C60 40, 60 10, 20 0" fill="#FFF" />
        <circle cx="20" cy="-90" r="5" fill="#000" />
    </g>

    <path d="M70 -80 Q150 -130 230 -80" stroke="#FF4500" stroke-width="5" fill="none" />
    <path d="M70 -78 Q150 -128 230 -78" stroke="#FF7F50" stroke-width="5" fill="none" />
    <path d="M70 -76 Q150 -126 230 -76" stroke="#FFA07A" stroke-width="5" fill="none" />

    <text x="150" y="290" font-size="20" text-anchor="middle" fill="#000" font-family="Arial">Disco Giraffe Jump Rope</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O4-mini low (2025-04-16) Player 1

Judge's Analysis

    Player 1's submission better adheres to the prompt with a visually clear representation of two giraffes using their necks as a jump rope under a disco ball.

    The composition and technical quality are stronger, with distinguishable elements and creative use of shapes.

    Player 2's submission lacks clarity and is less visually engaging, making it harder to interpret the intended scene.

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

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

Player 1
9
Player 2
1
Circles

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

Player 1
7
Player 2
3
Ellipses

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

Player 1
4
Player 2
Lines

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

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

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

Player 1
6
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
18
Player 2
5

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
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
5
Player 2
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
28
Player 2
18
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
4
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
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