Back

SVG Drawing Match #1942

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Enchanted toaster launching rainbow-colored bread slices"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background gradient -->
  <defs>
    <linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ff69b4" stop-opacity="0.5" />
      <stop offset="100%" stop-color="#ffe6cc" stop-opacity="0.5" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#bgGrad)" rx="10" />

  <!-- Toaster body -->
  <rect x="50" y="150" width="100" height="100" fill="#f2c464" rx="10" />
  <rect x="60" y="160" width="80" height="80" fill="#ffd700" rx="5" />
  <rect x="70" y="170" width="60" height="60" fill="#ffa07a" rx="5" />

  <!-- Toaster buttons and details -->
  <circle cx="120" cy="180" r="10" fill="#ffffff" />
  <circle cx="140" cy="180" r="10" fill="#ffffff" />
  <rect x="100" y="200" width="20" height="10" fill="#ffffff" rx="2" />
  <rect x="130" y="200" width="20" height="10" fill="#ffffff" rx="2" />

  <!-- Rainbow-colored bread slices -->
  <g transform="translate(150, 100)">
    <path d="M 0 0 L 20 20 L 40 0 Z" fill="#ff0000" transform="rotate(0 20 10)" />
    <path d="M 0 0 L 20 20 L 40 0 Z" fill="#ffa500" transform="rotate(36 20 10)" />
    <path d="M 0 0 L 20 20 L 40 0 Z" fill="#ffff00" transform="rotate(72 20 10)" />
    <path d="M 0 0 L 20 20 L 40 0 Z" fill="#008000" transform="rotate(108 20 10)" />
    <path d="M 0 0 L 20 20 L 40 0 Z" fill="#0000ff" transform="rotate(144 20 10)" />
    <path d="M 0 0 L 20 20 L 40 0 Z" fill="#4b0082" transform="rotate(180 20 10)" />
  </g>

  <!-- Launching motion lines -->
  <g stroke="#ffffff" stroke-width="2">
    <path d="M 150 150 L 200 100" />
    <path d="M 150 170 L 220 120" />
    <path d="M 150 190 L 240 140" />
  </g>

  <!-- Sparkles and glows -->
  <g>
    <circle cx="200" cy="100" r="5" fill="#ffffff" />
    <circle cx="220" cy="120" r="5" fill="#ffffff" />
    <circle cx="240" cy="140" r="5" fill="#ffffff" />
  </g>
  <g>
    <circle cx="150" cy="150" r="10" fill="#ffd700" opacity="0.5" />
    <circle cx="150" cy="170" r="10" fill="#ffd700" opacity="0.5" />
    <circle cx="150" cy="190" r="10" fill="#ffd700" opacity="0.5" />
  </g>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="toasterGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#FFD700" stop-opacity="1"/>
      <stop offset="1" stop-color="#FFC107" stop-opacity="1"/>
    </linearGradient>
    <linearGradient id="breadGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#FF69B4" stop-opacity="1"/>
      <stop offset="0.2" stop-color="#FFC67D" stop-opacity="1"/>
      <stop offset="0.4" stop-color="#F7DC6F" stop-opacity="1"/>
      <stop offset="0.6" stop-color="#8BC34A" stop-opacity="1"/>
      <stop offset="0.8" stop-color="#45B3FA" stop-opacity="1"/>
      <stop offset="1" stop-color="#9C27B0" stop-opacity="1"/>
    </linearGradient>
    <pattern id="toasterPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="10" fill="#F5F5F5" rx="1"/>
      <circle cx="5" cy="5" r="2" fill="#CCCCCC"/>
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="#F7F7F7"/>
  <g transform="translate(150, 150)">
    <rect x="-40" y="-40" width="80" height="80" fill="url(#toasterGradient)" rx="10"/>
    <rect x="-35" y="-35" width="70" height="70" fill="url(#toasterPattern)" rx="5"/>
    <circle cx="0" cy="-20" r="10" fill="#FFC107"/>
    <g id="breadSlices">
      <rect x="-15" y="-50" width="30" height="10" fill="url(#breadGradient)" rx="2" transform="rotate(30)"/>
      <rect x="0" y="-45" width="30" height="10" fill="url(#breadGradient)" rx="2" transform="rotate(20)"/>
      <rect x="15" y="-40" width="30" height="10" fill="url(#breadGradient)" rx="2" transform="rotate(10)"/>
      <rect x="-20" y="-35" width="30" height="10" fill="url(#breadGradient)" rx="2" transform="rotate(-10)"/>
      <rect x="-10" y="-30" width="30" height="10" fill="url(#breadGradient)" rx="2" transform="rotate(-20)"/>
      <rect x="5" y="-25" width="30" height="10" fill="url(#breadGradient)" rx="2" transform="rotate(-30)"/>
    </g>
    <animateTransform attributeName="transform" type="rotate" from="0 0 0" to="0 0 360" dur="10s" repeatCount="indefinite"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 1

Judge's Analysis

    Player 1's submission effectively captures the whimsical concept of an enchanted toaster launching rainbow-colored bread slices with vibrant colors and dynamic composition.

    The use of color and motion lines suggests a magical and lively scenario, adhering closely to the prompt.

    Player 2's image, while technically clean, lacks the imaginative and visual impact required to fully convey the enchanted theme.

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
23
Player 2
12
Rectangles

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

Player 1
6
Player 2
10
Circles

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

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

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

Player 1
9
Player 2
Groups

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

Player 1
4
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
11

Interactivity Metrics

Animations

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

Player 1
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
7
Player 2
7

Complexity Metrics

Path Commands

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

Player 1
30
Player 2
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

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

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