Back

SVG Drawing Match #1305

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clocktower made of melting ice cream cones"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="iceCreamGradient" gradientTransform="rotate(90)">
      <stop offset="0%" stop-color="#f8b195" />
      <stop offset="50%" stop-color="#f67280" />
      <stop offset="100%" stop-color="#c06c84" />
    </linearGradient>
    <linearGradient id="coneGradient" gradientTransform="rotate(90)">
      <stop offset="0%" stop-color="#f3d099" />
      <stop offset="100%" stop-color="#deae59" />
    </linearGradient>
    <radialGradient id="clockFaceGradient">
      <stop offset="0%" stop-color="#fff" />
      <stop offset="100%" stop-color="#f8b195" />
    </radialGradient>
    <pattern id="wafflePattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="10" height="10" fill="#f3d099" />
      <path d="M0,0 L10,10 M10,0 L0,10" stroke="#deae59" stroke-width="1" />
    </pattern>
  </defs>
  
  <!-- Base cone of clocktower -->
  <polygon points="150,30 190,230 110,230" fill="url(#coneGradient)" />

  <!-- Ice cream layers -->
  <path d="M130,120 C110,100 150,100 130,70 C110,40 170,40 150,90 C130,140 170,160 150,180 L150,230 L110,230 Q130,180 130,120 Z" 
        fill="url(#iceCreamGradient)" />
  <path d="M170,140 C160,120 190,120 170,100 C150,80 200,80 180,130 C160,180 200,200 180,220 L180,230 L190,230 Q180,200 170,140 Z" 
        fill="url(#iceCreamGradient)" />

  <!-- Clock face -->
  <circle cx="150" cy="130" r="20" fill="url(#clockFaceGradient)" stroke="#f67280" stroke-width="2" />
  <line x1="150" y1="130" x2="150" y2="115" stroke="#c06c84" stroke-width="2" stroke-linecap="round" />
  <line x1="150" y1="130" x2="160" y2="130" stroke="#c06c84" stroke-width="2" stroke-linecap="round" />
  
  <!-- Cone texture -->
  <path d="M150,30 L150,230" stroke="#deae59" stroke-width="1" stroke-dasharray="5,5" />
  <polygon points="150,30 190,230 110,230" fill="url(#wafflePattern)" />
</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="coneGradient" x1="0%" y1="100%" x2="0%" y2="0%">
      <stop offset="0%" style="stop-color:#d28f5a; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#c76a3c; stop-opacity:1" />
    </linearGradient>
    <linearGradient id="iceCreamGradient" x1="0%" y1="100%" x2="0%" y2="0%">
      <stop offset="0%" style="stop-color:#ff7f50; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffcc00; stop-opacity:1" />
    </linearGradient>
    <radialGradient id="clockFaceGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#fff; stop-opacity:1" />
      <stop offset="100%" style="stop-color:#e0e0e0; stop-opacity:1" />
    </radialGradient>
    <pattern id="dripPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="10" cy="15" r="5" fill="#ffcc00" />
    </pattern>
  </defs>

  <rect width="100%" height="100%" fill="#87cefa" />

  <g>
    <path d="M140 100 L130 180 C125 230, 175 230, 170 180 L160 100 Z" fill="url(#coneGradient)" />
    <path d="M110 180 C110 210, 190 210, 190 180 Z" fill="url(#iceCreamGradient)" />
    <path d="M100 180 C80 240, 220 240, 200 180 Z" fill="url(#iceCreamGradient)" style="mask:url(#dripMask)" />

    <path d="M120 180 Q130 160, 140 180 T160 180" fill="url(#iceCreamGradient)" />
    <path d="M140 100 C150 90, 160 90, 170 100 Q160 110, 140 100" fill="url(#iceCreamGradient)" />
  </g>
  
  <circle cx="150" cy="130" r="30" fill="url(#clockFaceGradient)" />
  <circle cx="150" cy="130" r="2" fill="#000" />
  <line x1="150" y1="130" x2="150" y2="100" stroke="#000" stroke-width="3" />
  <line x1="150" y1="130" x2="170" y2="130" stroke="#000" stroke-width="3" />
  <text x="145" y="155" font-family="Verdana" font-size="10" fill="#000">12</text>
  <text x="140" y="115" font-family="Verdana" font-size="10" fill="#000">3</text>
  <text x="170" y="155" font-family="Verdana" font-size="10" fill="#000">6</text>
  <text x="145" y="195" font-family="Verdana" font-size="10" fill="#000">9</text>
  
  <g fill="none" stroke="#fff" stroke-width="2">
    <path d="M165 100 C170 90, 160 80, 160 90 C160 100, 160 110, 165 100" style="filter:url(#dripPattern)" />
    <path d="M190 180 Q195 160, 200 180" style="filter:url(#dripPattern)" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o mini (2024-07-18) Player 2

Judge's Analysis

    Player 2's image more effectively combines the elements of a clock and melting ice cream cones, with a distinct clock face and cone structure.

    The use of color and composition enhances the melting effect, adhering closely to the prompt.

    Player 1's image, while creative, lacks the clear integration of clock elements, making Player 2's submission more successful in execution and visual appeal.

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

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

Player 1
1
Player 2
1
Circles

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

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

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

Player 1
2
Player 2
Paths

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

Player 1
4
Player 2
7
Groups

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

Player 1
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
4

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
22
Player 2
22
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
4
Player 2
4
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
4

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