Back

SVG Drawing Match #787

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock made of candy, its hands are licorice, set in a sugary landscape"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with gradient sky -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Ground with candy-like texture -->
  <rect x="0" y="200" width="300" height="100" fill="url(#groundGradient)" opacity="0.8"/>
  <rect x="0" y="200" width="300" height="100" fill="url(#specklesPattern)"/>

  <!-- Candy clock -->
  <g transform="translate(150 150)">
    <!-- Clock body (candy) -->
    <circle r="80" fill="url(#candyGradient1)" stroke="#fff" stroke-width="4"/>
    <circle r="60" fill="url(#candyGradient2)" stroke="#fff" stroke-width="2"/>
    
    <!-- Licorice hands -->
    <path d="M 0 -80 L 0 80" fill="#000" stroke="#000" stroke-width="8" stroke-linecap="round"/>
    <path d="M -40 0 L 40 0" fill="#000" stroke="#000" stroke-width="6" stroke-linecap="round"/>
    <path d="M 0 -120 L 0 -60" fill="#666" stroke="#666" stroke-width="2" stroke-linecap="round"/>
    
    <!-- Candy decorations -->
    <circle cx="0" cy="0" r="10" fill="#fff" stroke="#fff" stroke-width="2"/>
    <circle cx="0" cy="-40" r="8" fill="#fff" stroke="#fff" stroke-width="2"/>
  </g>

  <!-- Candy landscape elements -->
  <g transform="translate(100 220)">
    <!-- Gumdrop trees -->
    <circle cx="0" cy="0" r="20" fill="url(#gumdropGradient1)"/>
    <circle cx="50" cy="0" r="20" fill="url(#gumdropGradient2)"/>
    <circle cx="100" cy="0" r="20" fill="url(#gumdropGradient3)"/>
  </g>

  <g transform="translate(200 220)">
    <!-- Candy cane trees -->
    <path d="M 0 0 L 20 -40 L 40 0 L 20 40 L 0 0 Z" fill="#fff" stroke="#fff" stroke-width="2"/>
    <path d="M 20 -40 L 40 0 L 20 40 L 0 0 Z" fill="#fff" stroke="#fff" stroke-width="2"/>
  </g>

  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#ff99cc"/>
      <stop offset="1" stop-color="#ffb3d9"/>
    </linearGradient>

    <linearGradient id="groundGradient" x1="0" y1="200" x2="0" y2="300">
      <stop offset="0" stop-color="#ffd1c0"/>
      <stop offset="1" stop-color="#ffbea0"/>
    </linearGradient>

    <pattern id="specklesPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="#fff"/>
    </pattern>

    <radialGradient id="candyGradient1" cx="0" cy="0" r="80" fx="0" fy="0">
      <stop offset="0" stop-color="#ff69b4"/>
      <stop offset="1" stop-color="#ff1493"/>
    </radialGradient>

    <radialGradient id="candyGradient2" cx="0" cy="0" r="60" fx="0" fy="0">
      <stop offset="0" stop-color="#ff00ff"/>
      <stop offset="1" stop-color="#ff0066"/>
    </radialGradient>

    <radialGradient id="gumdropGradient1" cx="0" cy="0" r="20" fx="0" fy="0">
      <stop offset="0" stop-color="#ffff00"/>
      <stop offset="1" stop-color="#ffcc00"/>
    </radialGradient>

    <radialGradient id="gumdropGradient2" cx="0" cy="0" r="20" fx="0" fy="0">
      <stop offset="0" stop-color="#00ff00"/>
      <stop offset="1" stop-color="#00cc00"/>
    </radialGradient>

    <radialGradient id="gumdropGradient3" cx="0" cy="0" r="20" fx="0" fy="0">
      <stop offset="0" stop-color="#0000ff"/>
      <stop offset="1" stop-color="#000099"/>
    </radialGradient>
  </defs>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient Sky -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ffecd2"/>
      <stop offset="100%" stop-color="#fcb69f"/>
    </linearGradient>
    <radialGradient id="clockGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ff69b4"/>
      <stop offset="100%" stop-color="#c71585"/>
    </radialGradient>
    <pattern id="sugarPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="2" cy="2" r="1" fill="#ffffff" />
      <circle cx="8" cy="8" r="1" fill="#ffffff" />
    </pattern>
  </defs>
  
  <!-- Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Sugary Landscape -->
  <g>
    <ellipse cx="150" cy="250" rx="200" ry="50" fill="#ffb6c1" />
    <ellipse cx="100" cy="270" rx="80" ry="30" fill="#ffe4e1" />
    <ellipse cx="200" cy="260" rx="100" ry="35" fill="#fff0f5" />
    <!-- Candy Trees -->
    <g>
      <!-- Tree 1 -->
      <polygon points="60,250 50,220 70,220" fill="#8b0000" />
      <circle cx="60" cy="210" r="15" fill="#32cd32" />
      <circle cx="55" cy="200" r="10" fill="#32cd32" />
      <!-- Tree 2 -->
      <polygon points="240,250 230,220 250,220" fill="#8b0000" />
      <circle cx="240" cy="210" r="15" fill="#32cd32" />
      <circle cx="235" cy="200" r="10" fill="#32cd32" />
    </g>
  </g>
  
  <!-- Candy Clock -->
  <g transform="translate(150,150)">
    <circle cx="0" cy="0" r="80" fill="url(#clockGradient)" stroke="#ffffff" stroke-width="4" />
    <!-- Candy Decorations -->
    <g>
      <circle cx="60" cy="0" r="8" fill="#ff4500" />
      <circle cx="-60" cy="0" r="8" fill="#1e90ff" />
      <circle cx="0" cy="60" r="8" fill="#32cd32" />
      <circle cx="0" cy="-60" r="8" fill="#ffff00" />
      <circle cx="42.4" cy="42.4" r="6" fill="#8a2be2" />
      <circle cx="-42.4" cy="42.4" r="6" fill="#ff1493" />
      <circle cx="42.4" cy="-42.4" r="6" fill="#00ced1" />
      <circle cx="-42.4" cy="-42.4" r="6" fill="#ffa500" />
    </g>
    <!-- Licorice Hands -->
    <line x1="0" y1="0" x2="0" y2="-50" stroke="#000000" stroke-width="4" stroke-linecap="round"/>
    <line x1="0" y1="0" x2="35" y2="35" stroke="#000000" stroke-width="4" stroke-linecap="round"/>
    <!-- Center of Clock -->
    <circle cx="0" cy="0" r="5" fill="#000000" />
  </g>
  
  <!-- Sugar Sparkles -->
  <g>
    <circle cx="20" cy="80" r="2" fill="url(#sugarPattern)" />
    <circle cx="280" cy="50" r="2" fill="url(#sugarPattern)" />
    <circle cx="150" cy="20" r="2" fill="url(#sugarPattern)" />
    <circle cx="270" cy="200" r="2" fill="url(#sugarPattern)" />
    <circle cx="30" cy="150" r="2" fill="url(#sugarPattern)" />
  </g>
  
  <!-- Ground Details -->
  <g>
    <path d="M0,250 C50,230 250,230 300,250" fill="#fff0f5" />
    <path d="M0,260 C60,240 240,240 300,260" fill="#ffe4e1" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image captures the theme more effectively with a visually appealing sugary landscape and a candy-themed clock with licorice hands.

    The composition is more cohesive and colorful, enhancing the candy motif.

    Player 1's design, although creative, lacks the clear depiction of a sugary landscape and the overall theme connection is weaker.

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
31
Rectangles

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

Player 1
3
Player 2
1
Circles

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

Player 1
8
Player 2
21
Ellipses

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

Player 1
Player 2
3
Lines

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

Player 1
Player 2
2
Polygons

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

Player 1
Player 2
2
Paths

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

Player 1
5
Player 2
2
Groups

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

Player 1
3
Player 2
6

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
9
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
17
Player 2
18

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

Complexity Metrics

Path Commands

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

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