Back

SVG Drawing Match #937

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating islands made of cheese under a moonlit sky"

SVG by GPT-4o mini (2024-07-18)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
    <defs>
        <linearGradient id="moonlight" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:rgba(255, 255, 224, 0.8);stop-opacity:1" />
            <stop offset="100%" style="stop-color:rgba(255, 255, 224, 0.2);stop-opacity:1" />
        </linearGradient>
        <linearGradient id="cheeseGradient" x1="0%" y1="0%" x2="100%" y2="100%">
            <stop offset="0%" style="stop-color:#f6e58d; stop-opacity:1" />
            <stop offset="100%" style="stop-color:#f9ca24; stop-opacity:1" />
        </linearGradient>
        <radialGradient id="islandShadow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
            <stop offset="0%" style="stop-color:rgba(0, 0, 0, 0.3)" />
            <stop offset="100%" style="stop-color:rgba(0, 0, 0, 0)" />
        </radialGradient>
    </defs>
    <rect width="300" height="300" fill="#2c3e50"/>
    <ellipse cx="150" cy="150" rx="140" ry="80" fill="url(#moonlight)"/>
    <circle cx="220" cy="80" r="30" fill="rgba(255, 255, 224, 0.9)" />
    <circle cx="205" cy="75" r="10" fill="rgba(255, 255, 224, 0.7)" />
    <g id="cheeseIslands">
        <ellipse cx="100" cy="200" rx="40" ry="20" fill="url(#cheeseGradient)" />
        <ellipse cx="170" cy="180" rx="50" ry="25" fill="url(#cheeseGradient)" />
        <ellipse cx="70" cy="230" rx="30" ry="15" fill="url(#cheeseGradient)" />
        <ellipse cx="140" cy="220" rx="55" ry="27" fill="url(#cheeseGradient)" />
    </g>
    <g id="cheeseDetails" fill="#f39c12">
        <circle cx="95" cy="200" r="4" />
        <circle cx="110" cy="210" r="3" />
        <circle cx="145" cy="215" r="5" />
        <circle cx="185" cy="180" r="4" />
        <circle cx="170" cy="195" r="3" />
        <circle cx="165" cy="205" r="4" />
        <circle cx="60" cy="230" r="3" />
        <circle cx="75" cy="225" r="2" />
        <circle cx="130" cy="220" r="3" />
        <circle cx="155" cy="215" r="4" />
    </g>
    <text x="15" y="290" font-family="Verdana" font-size="12" fill="white">Floating Islands of Cheese</text>
</svg>
SVG by Claude 3.7 Sonnet (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background Sky -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#0a1a40" />
      <stop offset="70%" stop-color="#283a66" />
      <stop offset="100%" stop-color="#4a5e8c" />
    </linearGradient>
    <radialGradient id="moonGlow" cx="75%" cy="25%" r="25%" fx="75%" fy="25%">
      <stop offset="0%" stop-color="#fffcdb" stop-opacity="0.7" />
      <stop offset="100%" stop-color="#0a1a40" stop-opacity="0" />
    </radialGradient>
    <pattern id="cheeseHoles" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="2" fill="#e8c170" />
    </pattern>
    <filter id="moonBlur">
      <feGaussianBlur in="SourceGraphic" stdDeviation="2" />
    </filter>
    <filter id="cloudBlur">
      <feGaussianBlur in="SourceGraphic" stdDeviation="3" />
    </filter>
    <filter id="starTwinkle">
      <feTurbulence type="fractalNoise" baseFrequency="0.01" numOctaves="2" result="noise"/>
      <feDisplacementMap in="SourceGraphic" in2="noise" scale="3" xChannelSelector="R" yChannelSelector="G"/>
    </filter>
  </defs>

  <!-- Sky Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <rect width="300" height="300" fill="url(#moonGlow)" />

  <!-- Stars -->
  <g id="stars" fill="white" filter="url(#starTwinkle)">
    <circle cx="30" cy="40" r="1" />
    <circle cx="60" cy="25" r="1.2" />
    <circle cx="120" cy="30" r="0.8" />
    <circle cx="150" cy="60" r="1" />
    <circle cx="200" cy="40" r="1.3" />
    <circle cx="240" cy="70" r="0.9" />
    <circle cx="270" cy="50" r="1.1" />
    <circle cx="45" cy="80" r="0.7" />
    <circle cx="90" cy="65" r="1" />
    <circle cx="175" cy="30" r="0.8" />
    <circle cx="220" cy="20" r="1.2" />
    <circle cx="260" cy="15" r="0.9" />
    <circle cx="280" cy="85" r="1" />
    <circle cx="190" cy="75" r="0.7" />
  </g>

  <!-- Moon -->
  <circle cx="225" cy="75" r="25" fill="#fffcdb" />
  <circle cx="215" cy="65" r="7" fill="#e6e3c4" />
  <circle cx="235" cy="85" r="5" fill="#e6e3c4" />
  <circle cx="225" cy="90" r="4" fill="#e6e3c4" />

  <!-- Distant Cheese Islands -->
  <g opacity="0.8" transform="translate(0, 10) scale(0.8)">
    <path d="M50,180 Q65,170 80,182 Q95,190 110,180 Q130,170 145,185 C150,190 160,188 165,182 Q180,175 190,185 L190,200 L50,200 Z" fill="#f0d897" />
    <path d="M50,180 Q65,170 80,182 Q95,190 110,180 Q130,170 145,185 C150,190 160,188 165,182 Q180,175 190,185 L190,200 L50,200 Z" fill="url(#cheeseHoles)" fill-opacity="0.4" />
    <circle cx="70" cy="185" r="4" fill="#e8c170" />
    <circle cx="90" cy="188" r="3" fill="#e8c170" />
    <circle cx="130" cy="182" r="5" fill="#e8c170" />
    <circle cx="160" cy="190" r="3.5" fill="#e8c170" />
  </g>

  <!-- Floating Island 1 (Swiss Cheese) -->
  <g transform="translate(70, 140)">
    <path d="M0,20 Q15,0 35,10 Q55,15 75,5 Q90,-5 105,10 Q115,15 125,10 L130,35 Q115,45 95,42 Q75,50 55,45 Q35,48 15,40 Q5,35 0,20 Z" fill="#fae29e" />
    <circle cx="25" cy="20" r="7" fill="#e8c170" />
    <circle cx="50" cy="15" r="9" fill="#e8c170" />
    <circle cx="80" cy="25" r="6" fill="#e8c170" />
    <circle cx="105" cy="20" r="8" fill="#e8c170" />
    <circle cx="65" cy="35" r="5" fill="#e8c170" />
    <circle cx="35" cy="30" r="4" fill="#e8c170" />
    <!-- Small trees/vegetation -->
    <path d="M15,15 L17,5 L19,15 Z" fill="#7a9b76" />
    <path d="M90,5 L92,-5 L94,5 Z" fill="#7a9b76" />
    <path d="M110,15 L112,5 L114,15 Z" fill="#7a9b76" />
    <!-- Dripping cheese -->
    <path d="M30,42 Q30,50 28,55 Q26,65 30,70" fill="none" stroke="#fae29e" stroke-width="2" />
    <path d="M70,45 Q70,55 68,60 Q67,70 72,75" fill="none" stroke="#fae29e" stroke-width="2" />
    <path d="M100,42 Q100,50 98,55 Q97,65 102,70" fill="none" stroke="#fae29e" stroke-width="2" />
  </g>

  <!-- Floating Island 2 (Blue Cheese) -->
  <g transform="translate(160, 180)">
    <path d="M0,15 Q20,0 40,5 Q60,10 80,0 Q90,5 100,15 L95,35 Q75,45 55,40 Q35,45 15,35 Q5,25 0,15 Z" fill="#dccb9c" />
    <!-- Blue cheese spots -->
    <g fill="#6c8eb3" opacity="0.7">
      <circle cx="15" cy="20" r="2" />
      <circle cx="25" cy="10" r="1.5" />
      <circle cx="35" cy="25" r="2" />
      <circle cx="45" cy="15" r="1" />
      <circle cx="55" cy="30" r="2.5" />
      <circle cx="65" cy="12" r="1.8" />
      <circle cx="75" cy="25" r="1.2" />
      <circle cx="85" cy="15" r="2" />
      <circle cx="20" cy="30" r="1.5" />
      <circle cx="40" cy="18" r="1.2" />
      <circle cx="60" cy="22" r="1.8" />
      <circle cx="80" cy="30" r="1.4" />
    </g>
    <!-- Tiny house -->
    <rect x="50" y="5" width="10" height="8" fill="#8a5a44" />
    <path d="M48,5 L55,0 L62,5" fill="#c23b22" />
    <rect x="53" y="9" width="4" height="4" fill="#ffe6b3" />
    <!-- Dripping cheese -->
    <path d="M20,35 Q20,45 22,55" fill="none" stroke="#dccb9c" stroke-width="2" />
    <path d="M60,40 Q60,50 62,60" fill="none" stroke="#dccb9c" stroke-width="2" />
    <path d="M85,35 Q85,45 87,55" fill="none" stroke="#dccb9c" stroke-width="2" />
  </g>

  <!-- Floating Island 3 (Cheddar) -->
  <g transform="translate(30, 220)">
    <path d="M0,10 Q10,0 25,5 Q40,0 55,10 Q65,5 75,15 L70,30 Q55,35 40,30 Q25,35 10,30 Q0,25 0,10 Z" fill="#e8a23a" />
    <!-- Cracks and texture -->
    <path d="M10,15 L20,12 M30,20 L40,15 M50,10 L60,15 M35,25 L45,22" stroke="#c78520" stroke-width="0.8" fill="none" />
    <!-- Small mushroom -->
    <path d="M30,5 L30,0 Q35,-3 40,0 L40,5 Z" fill="#d3c0b4" />
    <path d="M33,0 Q35,-5 37,0" fill="#d3c0b4" stroke="#d3c0b4" stroke-width="0.5" />
    <!-- Dripping cheese -->
    <path d="M15,30 Q15,40 17,45" fill="none" stroke="#e8a23a" stroke-width="2" />
    <path d="M45,30 Q45,40 43,50" fill="none" stroke="#e8a23a" stroke-width="2" />
    <path d="M65,30 Q65,40 63,45" fill="none" stroke="#e8a23a" stroke-width="2" />
  </g>

  <!-- Clouds -->
  <g fill="white" opacity="0.7" filter="url(#cloudBlur)">
    <ellipse cx="50" cy="100" rx="20" ry="10" />
    <ellipse cx="65" cy="95" rx="15" ry="8" />
    <ellipse cx="80" cy="105" rx="18" ry="7" />
    
    <ellipse cx="230" cy="120" rx="25" ry="12" />
    <ellipse cx="250" cy="115" rx="20" ry="10" />
    <ellipse cx="215" cy="125" rx="18" ry="8" />
    
    <ellipse cx="150" cy="90" rx="15" ry="7" />
    <ellipse cx="165" cy="85" rx="12" ry="6" />
  </g>

  <!-- Mouse with parachute -->
  <g transform="translate(200, 140)">
    <path d="M5,15 Q2,12 0,10 Q2,8 5,5 Q8,8 10,10 Q8,12 5,15 Z" fill="#8c8c8c" />
    <circle cx="8" cy="7" r="1" fill="black" />
    <path d="M3,13 C-2,15 -2,20 5,20 C12,20 12,15 7,13" fill="#adadad" />
    <!-- Parachute -->
    <path d="M-5,0 Q5,-15 15,0" fill="none" stroke="#e57373" stroke-width="1" />
    <path d="M-5,0 Q5,5 15,0" fill="#e57373" opacity="0.7" />
    <line x1="0" y1="0" x2="5" y2="5" stroke="#e57373" stroke-width="0.5" />
    <line x1="10" y1="0" x2="5" y2="5" stroke="#e57373" stroke-width="0.5" />
  </g>

  <!-- Foreground elements -->
  <g>
    <!-- Cheese crumbs falling -->
    <circle cx="60" cy="260" r="1.5" fill="#f0d897" />
    <circle cx="120" cy="270" r="1" fill="#f0d897" />
    <circle cx="190" cy="250" r="1.2" fill="#f0d897" />
    <circle cx="250" cy="280" r="0.8" fill="#f0d897" />
    <circle cx="80" cy="240" r="1.3" fill="#f0d897" />
    <circle cx="140" cy="290" r="1.1" fill="#f0d897" />
    <circle cx="210" cy="260" r="0.9" fill="#f0d897" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet (2025-02-19) Player 2

Judge's Analysis

    Player 2's image showcases a more imaginative interpretation of the prompt, with detailed cheese islands featuring legs and structures that add to the whimsical nature of the scene.

    The inclusion of clouds and a starry sky enhances the moonlit atmosphere, creating a more visually appealing and technically sophisticated composition compared to Player 1's simpler depiction.

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
18
Player 2
88
Rectangles

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

Player 1
1
Player 2
4
Circles

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

Player 1
12
Player 2
49
Ellipses

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

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

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

Player 1
Player 2
25
Groups

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

Player 1
2
Player 2
9

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
14

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

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

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