Back

SVG Drawing Match #559

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Giraffe wearing a spacesuit, floating with balloons above a surreal desert"

SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1a0033;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#660066;stop-opacity:1" />
    </linearGradient>
    <pattern id="stars" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="0.5" fill="white" />
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  <rect x="0" y="0" width="300" height="300" fill="url(#stars)" />

  <!-- Desert -->
  <path d="M0 200 Q150 150 300 200 L300 300 L0 300 Z" fill="#ff9933" />
  <path d="M0 220 Q150 180 300 220 L300 300 L0 300 Z" fill="#cc6600" />

  <!-- Balloons -->
  <circle cx="150" cy="100" r="15" fill="#ff3366" />
  <circle cx="170" cy="90" r="12" fill="#3366ff" />
  <circle cx="130" cy="95" r="13" fill="#33cc33" />
  
  <!-- Strings -->
  <path d="M150 115 L160 140 M170 102 L160 140 M130 108 L160 140" 
        stroke="white" fill="none" stroke-width="1" />

  <!-- Giraffe in Spacesuit -->
  <g transform="translate(160 140)">
    <!-- Spacesuit Body -->
    <ellipse cx="0" cy="0" rx="25" ry="35" fill="#white" stroke="#666" stroke-width="2" />
    
    <!-- Helmet -->
    <circle cx="0" cy="-45" r="20" fill="#ccffff" stroke="#666" stroke-width="2" />
    
    <!-- Giraffe Face -->
    <path d="M-5 -50 L-5 -65 L5 -65 L5 -50" fill="#ffcc99" />
    <circle cx="-2" cy="-55" r="2" fill="black" />
    <circle cx="2" cy="-55" r="2" fill="black" />
    
    <!-- Spots -->
    <circle cx="-3" cy="-60" r="1.5" fill="#996633" />
    <circle cx="3" cy="-62" r="1.5" fill="#996633" />
    
    <!-- Spacesuit Details -->
    <rect x="-15" y="-10" width="30" height="10" fill="#666" />
    <circle cx="-10" cy="0" r="5" fill="#ff3366" />
    <text x="-5" y="5" fill="white" font-size="8">O₂</text>
  </g>

  <!-- Flying Debris -->
  <circle cx="50" cy="250" r="3" fill="#cc6600" />
  <circle cx="250" cy="270" r="4" fill="#cc6600" />
  <path d="M80 260 L87 267 L80 274 Z" fill="#cc6600" />

  <!-- Stars -->
  <circle cx="30" cy="30" r="1" fill="white" />
  <circle cx="270" cy="50" r="1" fill="white" />
  <circle cx="150" cy="20" r="1" fill="white" />
</svg>
SVG by Claude 3.7 Sonnet Thinking (2025-02-19)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Sky gradient -->
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#0b0b3b" />
      <stop offset="40%" stop-color="#1a1a7d" />
      <stop offset="70%" stop-color="#4d28a6" />
      <stop offset="100%" stop-color="#8a2be2" />
    </linearGradient>
    
    <!-- Desert gradient -->
    <linearGradient id="desertGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#e6bc68" />
      <stop offset="50%" stop-color="#d9ad59" />
      <stop offset="100%" stop-color="#c68e2f" />
    </linearGradient>
    
    <!-- Desert pattern -->
    <pattern id="desertPattern" patternUnits="userSpaceOnUse" width="30" height="30" patternTransform="rotate(30)">
      <path d="M0,15 L30,15" stroke="#b3751e" stroke-width="0.5" fill="none" />
      <path d="M15,0 L15,30" stroke="#b3751e" stroke-width="0.5" fill="none" />
    </pattern>
    
    <!-- Spacesuit gradient -->
    <linearGradient id="spacesuitGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#eaeaea" />
      <stop offset="50%" stop-color="#b8b8b8" />
      <stop offset="100%" stop-color="#7a7a7a" />
    </linearGradient>
    
    <!-- Visor gradient -->
    <linearGradient id="visorGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#5af7ff" stop-opacity="0.7" />
      <stop offset="100%" stop-color="#0066cc" stop-opacity="0.8" />
    </linearGradient>
    
    <!-- Balloon gradients -->
    <radialGradient id="balloonGradient1" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#ff5555" />
      <stop offset="100%" stop-color="#cc0000" />
    </radialGradient>
    
    <radialGradient id="balloonGradient2" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#55ff55" />
      <stop offset="100%" stop-color="#00cc00" />
    </radialGradient>
    
    <radialGradient id="balloonGradient3" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#5555ff" />
      <stop offset="100%" stop-color="#0000cc" />
    </radialGradient>
    
    <radialGradient id="balloonGradient4" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#ffff55" />
      <stop offset="100%" stop-color="#cccc00" />
    </radialGradient>
    
    <radialGradient id="balloonGradient5" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#ff55ff" />
      <stop offset="100%" stop-color="#cc00cc" />
    </radialGradient>
    
    <radialGradient id="balloonGradient6" cx="50%" cy="50%" r="50%" fx="25%" fy="25%">
      <stop offset="0%" stop-color="#55ffff" />
      <stop offset="100%" stop-color="#00cccc" />
    </radialGradient>
    
    <!-- Star glow filter -->
    <filter id="starGlow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="1" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <!-- Dust filter -->
    <filter id="dustGlow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="0.5" result="blur" />
      <feColorMatrix type="matrix" values="1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 3 0" />
    </filter>
  </defs>
  
  <!-- Background (Cosmic Sky) -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Stars -->
  <g id="stars">
    <circle cx="20" cy="30" r="1" fill="white" filter="url(#starGlow)" />
    <circle cx="50" cy="15" r="1.2" fill="white" filter="url(#starGlow)" />
    <circle cx="80" cy="40" r="0.8" fill="white" filter="url(#starGlow)" />
    <circle cx="110" cy="25" r="1" fill="white" filter="url(#starGlow)" />
    <circle cx="140" cy="10" r="1.5" fill="white" filter="url(#starGlow)" />
    <circle cx="170" cy="35" r="0.7" fill="white" filter="url(#starGlow)" />
    <circle cx="200" cy="20" r="1.3" fill="white" filter="url(#starGlow)" />
    <circle cx="230" cy="45" r="1" fill="white" filter="url(#starGlow)" />
    <circle cx="260" cy="15" r="0.9" fill="white" filter="url(#starGlow)" />
    <circle cx="290" cy="30" r="1.1" fill="white" filter="url(#starGlow)" />
    <circle cx="25" cy="70" r="1.2" fill="white" filter="url(#starGlow)" />
    <circle cx="65" cy="55" r="0.8" fill="white" filter="url(#starGlow)" />
    <circle cx="105" cy="80" r="1" fill="white" filter="url(#starGlow)" />
    <circle cx="145" cy="65" r="1.4" fill="white" filter="url(#starGlow)" />
    <circle cx="185" cy="50" r="0.7" fill="white" filter="url(#starGlow)" />
    <circle cx="225" cy="75" r="1.2" fill="white" filter="url(#starGlow)" />
    <circle cx="265" cy="60" r="0.9" fill="white" filter="url(#starGlow)" />
    
    <!-- Special stars -->
    <path d="M120,40 L123,47 L130,48 L125,53 L126,60 L120,57 L114,60 L115,53 L110,48 L117,47 Z" fill="white" fill-opacity="0.8" filter="url(#starGlow)" />
    <path d="M220,90 L222,95 L228,96 L224,100 L225,105 L220,103 L215,105 L216,100 L212,96 L218,95 Z" fill="white" fill-opacity="0.8" filter="url(#starGlow)" />
  </g>
  
  <!-- Cosmic dust particles -->
  <g id="cosmicDust">
    <circle cx="50" cy="100" r="0.3" fill="#c0c0ff" filter="url(#dustGlow)" />
    <circle cx="70" cy="120" r="0.2" fill="#c0ffff" filter="url(#dustGlow)" />
    <circle cx="90" cy="80" r="0.3" fill="#ffc0ff" filter="url(#dustGlow)" />
    <circle cx="110" cy="130" r="0.2" fill="#ffffc0" filter="url(#dustGlow)" />
    <circle cx="130" cy="70" r="0.3" fill="#c0ffc0" filter="url(#dustGlow)" />
    <circle cx="150" cy="110" r="0.2" fill="#ffc0c0" filter="url(#dustGlow)" />
    <circle cx="170" cy="90" r="0.3" fill="#c0c0ff" filter="url(#dustGlow)" />
    <circle cx="190" cy="140" r="0.2" fill="#c0ffff" filter="url(#dustGlow)" />
    <circle cx="210" cy="60" r="0.3" fill="#ffc0ff" filter="url(#dustGlow)" />
    <circle cx="230" cy="120" r="0.2" fill="#ffffc0" filter="url(#dustGlow)" />
    <circle cx="250" cy="80" r="0.3" fill="#c0ffc0" filter="url(#dustGlow)" />
    <circle cx="270" cy="100" r="0.2" fill="#ffc0c0" filter="url(#dustGlow)" />
  </g>
  
  <!-- Small distant planets -->
  <circle cx="40" cy="40" r="5" fill="#ff9988" />
  <ellipse cx="40" cy="40" rx="5" ry="1" fill="#cc6655" />
  
  <circle cx="260" cy="50" r="7" fill="#88ff99" />
  <ellipse cx="260" cy="50" rx="7" ry="2" fill="#55cc66" />
  
  <!-- Surreal Desert -->
  <g id="desert" transform="translate(0, 220)">
    <!-- Desert base -->
    <path d="M0,80 C50,40 100,60 150,30 C200,50 250,20 300,60 L300,80 L0,80 Z" fill="url(#desertGradient)" />
    <path d="M0,80 C50,40 100,60 150,30 C200,50 250,20 300,60 L300,80 L0,80 Z" fill="url(#desertPattern)" fill-opacity="0.2" />
    
    <!-- Floating rocks -->
    <ellipse cx="50" cy="20" rx="10" ry="5" fill="#b3751e" />
    <ellipse cx="50" cy="20" rx="8" ry="3" fill="#d69e2a" />
    
    <ellipse cx="200" cy="10" rx="15" ry="7" fill="#b3751e" />
    <ellipse cx="200" cy="10" rx="12" ry="4" fill="#d69e2a" />
    
    <!-- Floating islands -->
    <path d="M25,-10 C30,-15 40,-13 45,-10 C50,-15 60,-16 65,-10 C70,-15 75,-15 80,-10 L80,0 C75,5 70,3 65,0 C60,5 50,6 45,0 C40,5 30,5 25,0 Z" fill="#5d4037" />
    <path d="M25,-5 C30,-10 40,-8 45,-5 C50,-10 60,-11 65,-5 C70,-10 75,-10 80,-5 L80,0 C75,5 70,3 65,0 C60,5 50,6 45,0 C40,5 30,5 25,0 Z" fill="#8d6e63" />
    <path d="M35,-10 L35,-20 L40,-15 L45,-22 L50,-15 L55,-25 L60,-10" fill="none" stroke="#2e7d32" stroke-width="2" />
    <circle cx="40" cy="-15" r="3" fill="#4caf50" />
    <circle cx="50" cy="-15" r="4" fill="#4caf50" />
    <circle cx="55" cy="-25" r="3" fill="#4caf50" />
    
    <path d="M225,-20 C230,-25 240,-23 245,-20 C250,-25 260,-26 265,-20 C270,-25 275,-25 280,-20 L280,-10 C275,-5 270,-7 265,-10 C260,-5 250,-4 245,-10 C240,-5 230,-5 225,-10 Z" fill="#5d4037" />
    <path d="M225,-15 C230,-20 240,-18 245,-15 C250,-20 260,-21 265,-15 C270,-20 275,-20 280,-15 L280,-10 C275,-5 270,-7 265,-10 C260,-5 250,-4 245,-10 C240,-5 230,-5 225,-10 Z" fill="#8d6e63" />
    <path d="M235,-20 L235,-30 L240,-25 L245,-32 L250,-25 L255,-35 L260,-20" fill="none" stroke="#2e7d32" stroke-width="2" />
    <circle cx="240" cy="-25" r="3" fill="#4caf50" />
    <circle cx="250" cy="-25" r="4" fill="#4caf50" />
    <circle cx="255" cy="-35" r="3" fill="#4caf50" />
    
    <!-- Strange cacti -->
    <path d="M80,10 L80,-10 L85,-15 L80,-20 L80,-30 L75,-25 L70,-30 L70,-20 L65,-15 L70,-10 L70,10 Z" fill="#2e7d32" />
    <path d="M250,20 L250,0 L245,-10 L255,-15 L255,-25 L260,-15 L265,-20 L260,-5 L265,0 L260,5 L250,20 Z" fill="#2e7d32" />
    
    <!-- Crystal formations -->
    <polygon points="110,0 105,-15 115,-25 125,-15 120,0" fill="#9c27b0" fill-opacity="0.7" />
    <polygon points="175,5 170,-10 180,-20 190,-10 185,5" fill="#2196f3" fill-opacity="0.7" />
    
    <!-- Geometric structures -->
    <path d="M140,-5 L135,-20 L145,-30 L155,-20 L150,-5 Z" fill="none" stroke="#ff9800" stroke-width="1.5" />
    <path d="M140,-5 L145,-30 M140,-5 L155,-20 M150,-5 L135,-20 M150,-5 L145,-30" fill="none" stroke="#ff9800" stroke-width="1.5" />
  </g>
  
  <!-- Balloons -->
  <g id="balloons" transform="translate(150, 100)">
    <!-- Balloon strings -->
    <path d="M0,0 C-10,-5 -20,0 -15,10 C-10,20 -5,40 -10,60" fill="none" stroke="#dddddd" stroke-width="1" />
    <path d="M0,0 C0,-10 5,-5 10,5 C15,15 10,40 5,60" fill="none" stroke="#dddddd" stroke-width="1" />
    <path d="M0,0 C10,-5 15,0 20,10 C25,20 30,40 25,60" fill="none" stroke="#dddddd" stroke-width="1" />
    <path d="M0,0 C-5,-10 -10,-15 -25,-10 C-30,0 -25,20 -30,40" fill="none" stroke="#dddddd" stroke-width="1" />
    <path d="M0,0 C5,-10 10,-15 25,-10 C30,0 25,20 30,40" fill="none" stroke="#dddddd" stroke-width="1" />
    <path d="M0,0 C0,-15 -5,-25 0,-35 C5,-25 10,-15 0,0" fill="none" stroke="#dddddd" stroke-width="1" />
    <path d="M0,0 C-15,-5 -20,-15 -15,-30 C-10,-35 -5,-30 0,-20" fill="none" stroke="#dddddd" stroke-width="1" />
    
    <!-- Actual balloons -->
    <circle cx="-15" cy="-15" r="12" fill="url(#balloonGradient1)" />
    <circle cx="-15" cy="-15" r="10" fill="none" stroke="#ff8888" stroke-width="0.5" />
    
    <circle cx="10" cy="-15" r="12" fill="url(#balloonGradient2)" />
    <circle cx="10" cy="-15" r="10" fill="none" stroke="#88ff88" stroke-width="0.5" />
    
    <circle cx="20" cy="-15" r="12" fill="url(#balloonGradient3)" />
    <circle cx="20" cy="-15" r="10" fill="none" stroke="#8888ff" stroke-width="0.5" />
    
    <circle cx="-25" cy="-25" r="12" fill="url(#balloonGradient4)" />
    <circle cx="-25" cy="-25" r="10" fill="none" stroke="#ffff88" stroke-width="0.5" />
    
    <circle cx="25" cy="-25" r="12" fill="url(#balloonGradient5)" />
    <circle cx="25" cy="-25" r="10" fill="none" stroke="#ff88ff" stroke-width="0.5" />
    
    <circle cx="0" cy="-35" r="12" fill="url(#balloonGradient6)" />
    <circle cx="0" cy="-35" r="10" fill="none" stroke="#88ffff" stroke-width="0.5" />
    
    <circle cx="-15" cy="-30" r="10" fill="url(#balloonGradient1)" />
    <circle cx="-15" cy="-30" r="8" fill="none" stroke="#ff8888" stroke-width="0.5" />
  </g>
  
  <!-- Giraffe in Spacesuit -->
  <g id="giraffeInSpacesuit" transform="translate(150, 160)">
    <!-- Oxygen tank backpack -->
    <rect x="-15" y="-15" width="30" height="35" rx="5" ry="5" fill="#999999" stroke="#555555" stroke-width="1" />
    <circle cx="-7" cy="-5" r="5" fill="#cccccc" stroke="#555555" stroke-width="1" />
    <circle cx="7" cy="-5" r="5" fill="#cccccc" stroke="#555555" stroke-width="1" />
    <rect x="-10" y="5" width="20" height="10" rx="2" ry="2" fill="#777777" />
    
    <!-- Spacesuit body -->
    <ellipse cx="0" cy="0" rx="30" ry="40" fill="url(#spacesuitGradient)" />
    <ellipse cx="0" cy="-5" rx="28" ry="37" fill="none" stroke="#555555" stroke-width="0.5" stroke-dasharray="2,2" />
    
    <!-- Spacesuit details -->
    <rect x="-20" y="-10" width="40" height="20" rx="5" ry="5" fill="#333333" />
    <circle cx="-10" cy="0" r="4" fill="#ff0000" />
    <circle cx="10" cy="0" r="4" fill="#00ff00" />
    <rect x="-15" y="15" width="30" height="10" rx="3" ry="3" fill="#333333" />
    
    <!-- Control panel on chest -->
    <rect x="-12" y="-5" width="24" height="15" rx="2" ry="2" fill="#222222" />
    <circle cx="-7" cy="0" r="2" fill="#ff0000" />
    <circle cx="0" cy="0" r="2" fill="#ffff00" />
    <circle cx="7" cy="0" r="2" fill="#00ff00" />
    <rect x="-8" y="5" width="16" height="2" fill="#444444" />
    
    <!-- Legs with boots -->
    <path d="M-15,40 C-15,50 -15,60 -20,70" fill="none" stroke="url(#spacesuitGradient)" stroke-width="8" stroke-linecap="round" />
    <path d="M15,40 C15,50 15,60 20,70" fill="none" stroke="url(#spacesuitGradient)" stroke-width="8" stroke-linecap="round" />
    <ellipse cx="-20" cy="70" rx="6" ry="4" fill="#333333" />
    <ellipse cx="20" cy="70" rx="6" ry="4" fill="#333333" />
    
    <!-- Arms with gloves -->
    <path d="M-30,0 C-40,10 -50,10 -55,5" fill="none" stroke="url(#spacesuitGradient)" stroke-width="8" stroke-linecap="round" />
    <path d="M30,0 C40,10 50,10 55,5" fill="none" stroke="url(#spacesuitGradient)" stroke-width="8" stroke-linecap="round" />
    <circle cx="-55" cy="5" r="5" fill="#333333" />
    <circle cx="55" cy="5" r="5" fill="#333333" />
    
    <!-- Giraffe neck and head -->
    <path d="M0,-40 C-5,-60 -10,-80 0,-90" fill="none" stroke="#d69e2a" stroke-width="12" />
    
    <!-- Giraffe spots on neck -->
    <path d="M0,-40 C-5,-60 -10,-80 0,-90" fill="none" stroke="#9e7614" stroke-width="12" stroke-opacity="0.5" stroke-dasharray="5,10" />
    <ellipse cx="-2" cy="-50" rx="3" ry="4" fill="#9e7614" stroke="none" transform="rotate(-15)" />
    <ellipse cx="-8" cy="-65" rx="3" ry="4" fill="#9e7614" stroke="none" transform="rotate(-15)" />
    <ellipse cx="-4" cy="-80" rx="3" ry="4" fill="#9e7614" stroke="none" transform="rotate(-15)" />
    
    <!-- Giraffe head with helmet -->
    <ellipse cx="0" cy="-95" rx="12" ry="8" fill="#d69e2a" transform="rotate(-15)" />
    <ellipse cx="5" cy="-100" rx="10" ry="5" fill="#d69e2a" transform="rotate(-15)" />
    <ellipse cx="2" cy="-93" rx="3" ry="5" fill="#9e7614" transform="rotate(-15)" />
    
    <circle cx="0" cy="-95" r="15" fill="url(#spacesuitGradient)" fill-opacity="0.6" />
    <circle cx="0" cy="-95" r="13" fill="none" stroke="#555555" stroke-width="2" />
    
    <!-- Visor -->
    <ellipse cx="3" cy="-97" rx="10" ry="8" fill="url(#visorGradient)" transform="rotate(-15)" />
    
    <!-- Giraffe face details -->
    <circle cx="5" cy="-99" r="1.5" fill="#000000" /> <!-- Eye -->
    <path d="M8,-97 C9,-96 10,-96 11,-97" fill="none" stroke="#000000" stroke-width="0.5" /> <!-- Nostril -->
    
    <!-- Giraffe ears -->
    <ellipse cx="-8" cy="-102" rx="3" ry="4" fill="#d69e2a" transform="rotate(-30)" />
    <ellipse cx="12" cy="-102" rx="3" ry="4" fill="#d69e2a" transform="rotate(30)" />
    
    <!-- Giraffe horns -->
    <circle cx="-5" cy="-105" r="2" fill="#8b4513" />
    <circle cx="5" cy="-105" r="2" fill="#8b4513" />
    
    <!-- Helmet details -->
    <path d="M-10,-95 C-12,-93 -13,-90 -12,-88" fill="none" stroke="#dddddd" stroke-width="1" />
    <circle cx="-12" cy="-88" r="1" fill="#ff0000" />
    <path d="M-6,-105 C-8,-107 -10,-106 -10,-104" fill="none" stroke="#dddddd" stroke-width="1" />
    <circle cx="-10" cy="-104" r="1" fill="#ffff00" />
  </g>
  
  <!-- Oxygen tubes -->
  <path d="M150,65 C170,80 160,100 150,120" fill="none" stroke="#cccccc" stroke-width="2" stroke-dasharray="3,1" />
  <path d="M150,65 C130,80 140,100 150,120" fill="none" stroke="#cccccc" stroke-width="2" stroke-dasharray="3,1" />
  
  <!-- Floating clock -->
  <g transform="translate(230, 80) rotate(15)">
    <circle cx="0" cy="0" r="10" fill="#eaeaea" stroke="#333333" stroke-width="1" />
    <line x1="0" y1="0" x2="0" y2="-6" stroke="#333333" stroke-width="1" />
    <line x1="0" y1="0" x2="4" y2="4" stroke="#333333" stroke-width="1.5" />
    <circle cx="0" cy="0" r="1" fill="#333333" />
    <path d="M0,-10 L1,-9 L0,-8 L-1,-9 Z" fill="#333333" />
    <path d="M10,0 L9,1 L8,0 L9,-1 Z" fill="#333333" />
    <path d="M0,10 L-1,9 L0,8 L1,9 Z" fill="#333333" />
    <path d="M-10,0 L-9,-1 L-8,0 L-9,1 Z" fill="#333333" />
  </g>
  
  <!-- Abstract shapes -->
  <path d="M50,100 C60,90 70,110 80,100 C90,90 100,110 110,100" stroke="#ff9800" stroke-width="2" fill="none" />
  <path d="M40,110 C50,90 60,130 70,110" stroke="#e91e63" stroke-width="2" fill="none" />
  
  <!-- Small planet with rings -->
  <circle cx="260" cy="150" r="15" fill="#673ab7" />
  <ellipse cx="260" cy="150" rx="15" ry="3" fill="#512da8" />
  <ellipse cx="260" cy="150" rx="25" ry="5" fill="none" stroke="#ffeb3b" stroke-width="1" />
  <ellipse cx="260" cy="150" rx="28" ry="6" fill="none" stroke="#ff5722" stroke-width="0.5" />
  
  <!-- Small flying saucer -->
  <g transform="translate(60, 150) rotate(-10)">
    <ellipse cx="0" cy="0" rx="15" ry="4" fill="#b0bec5" />
    <ellipse cx="0" cy="-2" rx="8" ry="2" fill="#607d8b" />
    <ellipse cx="0" cy="0" rx="10" ry="1" fill="#29b6f6" fill-opacity="0.5" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.7 Sonnet Thinking (2025-02-19) Player 2

Judge's Analysis

    Player 2's image is more creative and visually appealing, with a detailed depiction of the giraffe in a spacesuit, colorful balloons, and a surreal desert environment.

    The composition is dynamic and effectively conveys the theme, while the technical quality is high.

    Player 1's image is more abstract and less detailed, lacking the visual richness and adherence to the prompt seen in Player 2's submission.

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
24
Player 2
146
Rectangles

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

Player 1
3
Player 2
7
Circles

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

Player 1
15
Player 2
70
Ellipses

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

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

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

Player 1
1
Player 2
7

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
73

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

Complexity Metrics

Path Commands

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

Player 1
24
Player 2
194
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
2
Player 2
13
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