Back

SVG Drawing Match #2482

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Robot chef flipping pixelated pancakes on a hover stove."

SVG by o3 high (2025-04-16)
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="bgGrad" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#0d1b3d"/>
      <stop offset="1" stop-color="#1e418a"/>
    </linearGradient>

    <linearGradient id="metal" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#f4f9ff"/>
      <stop offset="0.5" stop-color="#a8bed1"/>
      <stop offset="1" stop-color="#dfe9f2"/>
    </linearGradient>

    <linearGradient id="stoveGlow" x1="50%" y1="0%" x2="50%" y2="100%">
      <stop offset="0%" stop-color="#00d9ff"/>
      <stop offset="1" stop-color="#0050ff"/>
    </linearGradient>

    <radialGradient id="flame" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#fffed9"/>
      <stop offset="0.6" stop-color="#ffb657"/>
      <stop offset="1" stop-color="#ff541c" stop-opacity="0.2"/>
    </radialGradient>

    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="6" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>

    <pattern id="pixelPancake" patternUnits="userSpaceOnUse" width="6" height="6">
      <rect width="6" height="6" fill="#d99a4e"/>
      <rect width="3" height="3" fill="#e6b072"/>
      <rect x="3" y="3" width="3" height="3" fill="#9c5d28"/>
    </pattern>

    <path id="flipPath" d="M240 150 C210 70 140 70 100 140" fill="none"/>
  </defs>

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

  <!-- Hover Stove -->
  <g>
    <ellipse cx="150" cy="230" rx="80" ry="15" fill="url(#stoveGlow)" opacity="0.3" filter="url(#glow)"/>
    <ellipse cx="150" cy="220" rx="70" ry="12" fill="url(#flame)" filter="url(#glow)"/>
  </g>

  <!-- Robot Chef -->
  <g id="robot">
    <!-- Body -->
    <rect x="120" y="120" width="60" height="60" rx="8" fill="url(#metal)" stroke="#65798a" stroke-width="3"/>
    <!-- Buttons -->
    <circle cx="150" cy="140" r="3" fill="#00d9ff"/>
    <circle cx="150" cy="155" r="3" fill="#ff6d00"/>
    <circle cx="150" cy="170" r="3" fill="#00d931"/>

    <!-- Head -->
    <rect x="125" y="60" width="50" height="50" rx="6" fill="url(#metal)" stroke="#65798a" stroke-width="3"/>
    <!-- Eyes -->
    <g>
      <circle cx="140" cy="80" r="6" fill="#1a1a1a"/>
      <circle cx="160" cy="80" r="6" fill="#1a1a1a"/>
      <circle cx="140" cy="80" r="2" fill="#00faff"/>
      <circle cx="160" cy="80" r="2" fill="#00faff"/>
    </g>
    <!-- Mouth -->
    <rect x="138" y="95" width="24" height="5" rx="2" fill="#1a1a1a"/>

    <!-- Chef Hat -->
    <g>
      <path d="M135 55 Q140 40 150 42 Q160 40 165 55 Z" fill="#ffffff" stroke="#c9d2d8" stroke-width="2"/>
      <rect x="137" y="55" width="26" height="6" fill="#ffffff" stroke="#c9d2d8" stroke-width="2"/>
    </g>

    <!-- Left Arm + Spatula -->
    <g>
      <line x1="120" y1="135" x2="90" y2="115" stroke="url(#metal)" stroke-width="6" stroke-linecap="round"/>
      <line x1="90" y1="115" x2="70" y2="135" stroke="url(#metal)" stroke-width="6" stroke-linecap="round"/>
      <!-- Spatula -->
      <line x1="70" y1="135" x2="55" y2="120" stroke="#3e444a" stroke-width="6" stroke-linecap="round"/>
      <rect x="47" y="110" width="12" height="8" rx="1" fill="#3e444a"/>
      <line x1="49" y1="112" x2="57" y2="112" stroke="#8a939b" stroke-width="1"/>
      <line x1="49" y1="114" x2="57" y2="114" stroke="#8a939b" stroke-width="1"/>
    </g>

    <!-- Right Arm + Pan -->
    <g>
      <line x1="180" y1="135" x2="210" y2="115" stroke="url(#metal)" stroke-width="6" stroke-linecap="round"/>
      <line x1="210" y1="115" x2="235" y2="145" stroke="url(#metal)" stroke-width="6" stroke-linecap="round"/>
      <!-- Pan handle -->
      <line x1="235" y1="145" x2="250" y2="135" stroke="#3e444a" stroke-width="6" stroke-linecap="round"/>
      <!-- Pan -->
      <ellipse cx="260" cy="130" rx="20" ry="8" fill="#1e1e1e"/>
      <ellipse cx="260" cy="128" rx="18" ry="6" fill="#3b3b3b"/>
      <!-- Pancake in pan -->
      <circle cx="260" cy="125" r="6" fill="url(#pixelPancake)" stroke="#9c5d28" stroke-width="1"/>
    </g>
  </g>

  <!-- Flying Pancake -->
  <g>
    <circle r="8" fill="url(#pixelPancake)" stroke="#9c5d28" stroke-width="1">
      <animateMotion dur="3s" repeatCount="indefinite" rotate="auto">
        <mpath href="#flipPath"/>
      </animateMotion>
    </circle>
  </g>

  <!-- Sparkles -->
  <g opacity="0.7">
    <circle cx="170" cy="40" r="2" fill="#ffffff">
      <animate attributeName="r" values="1;3;1" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="200" cy="70" r="1.5" fill="#ffffff">
      <animate attributeName="r" values="1;2;1" dur="1.5s" repeatCount="indefinite"/>
    </circle>
    <circle cx="90" cy="60" r="2" fill="#ffffff">
      <animate attributeName="r" values="1;3;1" dur="2.5s" repeatCount="indefinite"/>
    </circle>
  </g>
</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="stoveGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffcc00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff6600;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="pancakeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ffcc66;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#e6b800;stop-opacity:1" />
    </linearGradient>
    <pattern id="pixelPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <rect width="5" height="5" fill="#ffcc00" />
      <rect x="5" y="5" width="5" height="5" fill="#ffcc00" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="#cfe0e8" />
  <g transform="translate(50, 200)">
    <rect x="-40" y="-20" width="200" height="20" fill="url(#stoveGradient)" />
    <rect x="-50" y="-15" width="210" height="30" rx="15" ry="15" fill="#444444" />
    <circle cx="60" cy="-25" r="15" fill="#ff6666" />
    <circle cx="140" cy="-25" r="15" fill="#ff6666" />
  </g>
  <g transform="translate(90, 170)">
    <rect x="-8" y="-15" width="16" height="120" fill="#555" />
    <rect x="-20" y="-60" width="40" height="40" fill="#44c0b7" />
    <circle cx="0" cy="-70" r="10" fill="#ffcc00" />
    <rect x="-40" y="-100" width="80" height="20" fill="url(#pxPattern)" />
  </g>
  <g transform="translate(130, 170)">
    <g>
      <rect x="-20" y="-20" width="40" height="10" fill="url(#pancakeGradient)" />
      <rect x="-5" y="-30" width="10" height="10" fill="#ffffff" opacity="0.3" />
      <rect x="-10" y="-40" width="20" height="10" fill="url(#pancakeGradient)" />
      <ellipse cx="0" cy="-50" rx="20" ry="5" fill="url(#pixelPattern)" />
    </g>
    <g transform="translate(15, -20) rotate(-15)">
      <rect x="-20" y="-20" width="40" height="10" fill="url(#pancakeGradient)" />
      <rect x="-5" y="-30" width="10" height="10" fill="#ffffff" opacity="0.3" />
      <rect x="-10" y="-40" width="20" height="10" fill="url(#pancakeGradient)" />
      <ellipse cx="0" cy="-50" rx="20" ry="5" fill="url(#pixelPattern)" />
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3 high (2025-04-16) Player 1

Judge's Analysis

    Player 1's submission is more detailed and adheres more closely to the prompt, clearly depicting a robot chef with a hover stove and a pixelated pancake.

    The design is visually appealing and demonstrates better technical quality and compositional strength compared to Player 2's submission, which is abstract and lacks clear adherence to 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
35
Player 2
19
Rectangles

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

Player 1
9
Player 2
14
Circles

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

Player 1
12
Player 2
3
Ellipses

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

Player 1
4
Player 2
2
Lines

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

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

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

Player 1
8
Player 2
5

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

The number of elements with opacity attributes in the SVG.

Player 1
2
Player 2
2
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
14
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
24
Player 2
7

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
4
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
4

Complexity Metrics

Path Commands

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

Player 1
6
Player 2
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

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