Back

SVG Drawing Match #2345

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An ice-cream cone melting under a tiny sun wearing sunglasses."

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="300" height="300" fill="skyblue" />
  
  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="yellow" />
  <circle cx="250" cy="50" r="28" fill="orange" />
  <path d="M250 10 L240 50 L260 50 Z" fill="gold" />
  <ellipse cx="250" cy="45" rx="10" ry="5" fill="black" />
  <path d="M240 40 L250 45 M260 40 L250 45" stroke="black" stroke-width="2" />
  
  <!-- Ice Cream Cone -->
  <polygon points="150,200 130,280 170,280" fill="#FFD700" />
  <linearGradient id="iceCreamGradient" gradientTransform="rotate(90)">
    <stop offset="0%" stop-color="#ffcccb" />
    <stop offset="100%" stop-color="#ff99cc" />
  </linearGradient>
  <circle cx="150" cy="175" r="40" fill="url(#iceCreamGradient)" />
  
  <!-- Melting Ice Cream -->
  <path d="M110 200 C120 210, 140 210, 130 220 C120 230, 125 240, 110 240 C100 235, 105 220, 110 200" fill="rgba(255, 105, 180, 0.5)" />
  <path d="M170 200 C160 210, 140 210, 150 220 C160 230, 155 240, 170 240 C180 235, 175 220, 170 200" fill="rgba(255, 105, 180, 0.5)" />
  
  <!-- Cone Texture -->
  <pattern id="coneTexture" patternUnits="userSpaceOnUse" width="10" height="10">
    <path d="M 0 0 L 10 0 L 5 10 Z" fill="#8B4513" />
  </pattern>
  <polygon points="150,200 130,280 170,280" fill="url(#coneTexture)" />
  
</svg>
SVG by Gemini 2.5 Pro Preview 05-06
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="sunGradient" cx="0.5" cy="0.5" r="0.5" fx="0.3" fy="0.3">
      <stop offset="0%" stop-color="#FFFDE7"/>
      <stop offset="50%" stop-color="#FFEB3B"/>
      <stop offset="100%" stop-color="#FBC02D"/>
    </radialGradient>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#87CEFA"/> <!-- LightSkyBlue -->
      <stop offset="60%" stop-color="#AEDFF7"/>
      <stop offset="100%" stop-color="#FFDAB9"/> <!-- PeachPuff for horizon -->
    </linearGradient>
    <linearGradient id="coneGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#F0E68C"/> <!-- Khaki -->
      <stop offset="100%" stop-color="#D2B48C"/> <!-- Tan -->
    </linearGradient>
    <radialGradient id="strawberryScoopGradient" cx="0.5" cy="0.5" r="0.7" fx="0.35" fy="0.35">
      <stop offset="0%" stop-color="#FFD1DC"/> <!-- LightPink -->
      <stop offset="50%" stop-color="#FF69B4"/> <!-- HotPink -->
      <stop offset="100%" stop-color="#C71585"/> <!-- MediumVioletRed -->
    </radialGradient>
     <radialGradient id="vanillaScoopGradient" cx="0.5" cy="0.5" r="0.7" fx="0.35" fy="0.35">
      <stop offset="0%" stop-color="#FFF8E1"/> <!-- Lighter Cornsilk -->
      <stop offset="50%" stop-color="#FFFACD"/> <!-- LemonChiffon -->
      <stop offset="100%" stop-color="#F5DEB3"/> <!-- Wheat -->
    </radialGradient>
    <linearGradient id="strawberryDripGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#FFB6C1" stop-opacity="0.9"/>
      <stop offset="100%" stop-color="#FF69B4" stop-opacity="0.95"/>
    </linearGradient>
    <linearGradient id="vanillaDripGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#FFFACD" stop-opacity="0.85"/>
      <stop offset="100%" stop-color="#F5DEB3" stop-opacity="0.9"/>
    </linearGradient>
    <radialGradient id="puddleGradient" cx="0.5" cy="0.5" r="0.7">
      <stop offset="0%" stop-color="#FFC0CB" stop-opacity="0.6"/> <!-- Pink -->
      <stop offset="60%" stop-color="#FFB6C1" stop-opacity="0.7"/> <!-- LightPink -->
      <stop offset="100%" stop-color="#F5DEB3" stop-opacity="0.5"/> <!-- Wheat (mixed melt) -->
    </radialGradient>

    <pattern id="wafflePattern" patternUnits="userSpaceOnUse" width="10" height="10" patternTransform="rotate(45)">
      <path d="M0 5 L10 5 M5 0 L5 10" stroke="#D2B48C" stroke-width="1.2" opacity="0.7"/>
      <path d="M-1 1 L1 -1 M-1 9 L9 -1 M1 11 L11 1 M9 11 L11 9" stroke="#CD853F" stroke-width="0.8" opacity="0.5"/>
    </pattern>
  </defs>

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

  <g id="sun-group" transform="translate(245 65)">
    <circle cx="0" cy="0" r="25" fill="url(#sunGradient)" />
    <g id="sun-rays" fill="#FFDA63" opacity="0.9">
        <path d="M0 -26 Q 7 -40 0 -50 Q -7 -40 0 -26 Z" transform="rotate(0)"/>
        <path d="M0 -26 Q 7 -40 0 -50 Q -7 -40 0 -26 Z" transform="rotate(30)"/>
        <path d="M0 -26 Q 7 -40 0 -50 Q -7 -40 0 -26 Z" transform="rotate(60)"/>
        <path d="M0 -26 Q 7 -40 0 -50 Q -7 -40 0 -26 Z" transform="rotate(90)"/>
        <path d="M0 -26 Q 7 -40 0 -50 Q -7 -40 0 -26 Z" transform="rotate(120)"/>
        <path d="M0 -26 Q 7 -40 0 -50 Q -7 -40 0 -26 Z" transform="rotate(150)"/>
        <path d="M0 -26 Q 7 -40 0 -50 Q -7 -40 0 -26 Z" transform="rotate(180)"/>
        <path d="M0 -26 Q 7 -40 0 -50 Q -7 -40 0 -26 Z" transform="rotate(210)"/>
        <path d="M0 -26 Q 7 -40 0 -50 Q -7 -40 0 -26 Z" transform="rotate(240)"/>
        <path d="M0 -26 Q 7 -40 0 -50 Q -7 -40 0 -26 Z" transform="rotate(270)"/>
        <path d="M0 -26 Q 7 -40 0 -50 Q -7 -40 0 -26 Z" transform="rotate(300)"/>
        <path d="M0 -26 Q 7 -40 0 -50 Q -7 -40 0 -26 Z" transform="rotate(330)"/>
    </g>
    <g id="sunglasses" transform="translate(0, -2)">
      <rect x="-14" y="-7" width="11" height="9" rx="3" ry="3" fill="#212121" stroke="#000" stroke-width="0.5"/>
      <rect x="3" y="-7" width="11" height="9" rx="3" ry="3" fill="#212121" stroke="#000" stroke-width="0.5"/>
      <line x1="-3" y1="-4" x2="3" y2="-4" stroke="#111" stroke-width="1.5"/>
      <path d="M-14 -3 L-20 -1" stroke="#111" stroke-width="1.5"/>
      <path d="M14 -3 L20 -1" stroke="#111" stroke-width="1.5"/>
      <ellipse cx="-8.5" cy="-3" rx="2" ry="1" fill="white" opacity="0.25" transform="rotate(-25 -8.5 -3)"/>
      <ellipse cx="8.5" cy="-3" rx="2" ry="1" fill="white" opacity="0.25" transform="rotate(-25 8.5 -3)"/>
    </g>
  </g>

  <g id="melted-puddle">
    <ellipse cx="150" cy="288" rx="80" ry="25" fill="url(#puddleGradient)" opacity="0.85"/>
    <path d="M90 285 Q110 300 150 288 Q190 300 210 285 Q195 270 150 278 Q105 270 90 285 Z" fill="#FFC0CB" opacity="0.4"/>
  </g>

  <g id="ice-cream-cone-group" transform="translate(150 170) rotate(3)">
    <path d="M0 0 L-38 105 L38 105 Z" fill="url(#coneGradient)"/>
    <path d="M0 0 L-38 105 L38 105 Z" fill="url(#wafflePattern)"/>

    <path id="vanilla-scoop"
          d="M0 -28
             C -40 -28, -50 15, -35 30
             Q -20 45, 0 40
             Q 20 45, 35 30
             C 50 15, 40 -28, 0 -28 Z"
          fill="url(#vanillaScoopGradient)" />

    <path id="strawberry-scoop"
          transform="translate(2, -48)"
          d="M0 -25
             C -35 -25, -42 5, -28 20
             Q -12 32, 0 28
             Q 12 32, 28 20
             C 42 5, 35 -25, 0 -25 Z"
          fill="url(#strawberryScoopGradient)" />

    <g id="drips">
      <path d="M-5 -22 Q -10 0 -2 18 L 2 20 L 5 18 Q -5 0 -5 -22 Z" transform="translate(-15, -28) rotate(-5)" fill="url(#strawberryDripGradient)"/>
      <path d="M5 -15 Q 10 5 2 30 L 5 33 L 8 30 Q 15 5 5 -15 Z" transform="translate(18, -25) rotate(15)" fill="url(#strawberryDripGradient)"/>
      <path d="M-10 25 Q -15 45 -5 65 L 0 68 L 5 65 Q -5 45 -10 25 Z" transform="translate(-20, 10) rotate(-10)" fill="url(#vanillaDripGradient)"/>
      <path d="M8 30 Q 12 50 5 72 L 8 75 L 11 72 Q 18 50 8 30 Z" transform="translate(25, 5) rotate(8)" fill="url(#vanillaDripGradient)"/>
    </g>

    <ellipse cx="-12" cy="-65" rx="8" ry="4" fill="white" opacity="0.15" transform="rotate(-30 -12 -65)"/>
    <ellipse cx="10" cy="-15" rx="9" ry="5" fill="white" opacity="0.1" transform="rotate(20 10 -15)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini 2.5 Pro Preview 05-06 Player 2

Judge's Analysis

    Player 2's submission demonstrates greater creativity and technical quality, with a more detailed rendering of the sun wearing sunglasses and a melting ice cream cone.

    The composition is visually stronger and more engaging due to the inclusion of shading, gradients, and a clear depiction of melting.

    Player 1's image, while adhering to the prompt, appears less polished and lacks the same level of detail 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
12
Player 2
35
Rectangles

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

Player 1
1
Player 2
3
Circles

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

Player 1
3
Player 2
1
Ellipses

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

Player 1
1
Player 2
5
Lines

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

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

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

Player 1
Player 2
6

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
22

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
24

Complexity Metrics

Path Commands

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

Player 1
20
Player 2
114
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
Player 2
9
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