Back

SVG Drawing Match #545

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with skyscrapers, underlit by bioluminescent jellyfish in the sky"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGrad" cx="150" cy="150" r="150" fx="150" fy="50">
      <stop offset="0" stop-color="#1a1a4a" stop-opacity="1"/>
      <stop offset="1" stop-color="#0a5bff" stop-opacity="1"/>
    </radialGradient>
    
    <linearGradient id="buildingGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#2a2a6a" stop-opacity="1"/>
      <stop offset="1" stop-color="#0a5bff" stop-opacity="0.8"/>
    </linearGradient>
    
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    
    <path id="jellyfish" d="M150 100 L160 90 Q170 100 160 110 L150 100 Z"/>
  </defs>

  <rect width="300" height="300" fill="url(#skyGrad)"/>
  
  <g transform="translate(50,100)">
    <!-- Floating Island -->
    <path d="M0 0 Q150 20 300 0" fill="#3a3a3a"/>
    
    <!-- Skyscrapers -->
    <rect x="50" y="0" width="40" height="120" fill="url(#buildingGrad)"/>
    <rect x="140" y="0" width="20" height="150" fill="url(#buildingGrad)"/>
    <rect x="200" y="0" width="30" height="110" fill="url(#buildingGrad)"/>
  </g>

  <!-- Jellyfish -->
  <g transform="translate(150,250)">
    <use href="#jellyfish" fill="#4a4a9a" filter="url(#glow)"/>
    <path d="M0 0 Q20 -20 40 0" stroke="#4a4a9a" fill="none" stroke-width="2"/>
    <path d="M40 0 Q60 -20 80 0" stroke="#4a4a9a" fill="none" stroke-width="2"/>
  </g>

  <!-- Lighting Effects -->
  <filter id="light">
    <fePointLight x="150" y="250" z="1" color="#4a4a9a"/>
    <feMerge>
      <feMergeNode in="SourceGraphic"/>
    </feMerge>
  </filter>

  <!-- Ambient Light -->
  <feAmbientLight cx="150" cy="150" numOctaves="2" result="ambient"/>

  <!-- Birds -->
  <g transform="translate(100,100)">
    <path d="M0 0 L10 5 L5 10 L0 5 Z" fill="#4a4a9a" transform="translate(50,0) rotate(45)"/>
    <path d="M0 0 L10 5 L5 10 L0 5 Z" fill="#4a4a9a" transform="translate(100,50) rotate(-45)"/>
  </g>
</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>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#0a0a2a" />
      <stop offset="40%" stop-color="#1a1a4a" />
      <stop offset="100%" stop-color="#2a2a6a" />
    </linearGradient>
    
    <filter id="jellyGlow" x="-30%" y="-30%" width="160%" height="160%">
      <feGaussianBlur stdDeviation="3" result="blur" />
      <feComposite in="SourceGraphic" in2="blur" operator="over" />
    </filter>
    
    <linearGradient id="islandTop" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#3a7050" />
      <stop offset="60%" stop-color="#4a8060" />
      <stop offset="100%" stop-color="#2a5040" />
    </linearGradient>
    
    <linearGradient id="islandSide" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#2a5040" />
      <stop offset="100%" stop-color="#1a3020" />
    </linearGradient>
    
    <linearGradient id="buildingGrad1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#444" />
      <stop offset="100%" stop-color="#222" />
    </linearGradient>
    
    <linearGradient id="buildingGrad2" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#555" />
      <stop offset="100%" stop-color="#333" />
    </linearGradient>
    
    <linearGradient id="glassGrad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#88aaff" stop-opacity="0.7" />
      <stop offset="100%" stop-color="#4477aa" stop-opacity="0.5" />
    </linearGradient>
    
    <radialGradient id="jellyGrad1" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#88ffff" stop-opacity="0.9" />
      <stop offset="70%" stop-color="#44aaff" stop-opacity="0.8" />
      <stop offset="100%" stop-color="#0066cc" stop-opacity="0.6" />
    </radialGradient>
    
    <radialGradient id="jellyGrad2" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ff88ff" stop-opacity="0.9" />
      <stop offset="70%" stop-color="#ff44aa" stop-opacity="0.8" />
      <stop offset="100%" stop-color="#cc0066" stop-opacity="0.6" />
    </radialGradient>
    
    <radialGradient id="jellyGrad3" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#aaffaa" stop-opacity="0.9" />
      <stop offset="70%" stop-color="#66dd66" stop-opacity="0.8" />
      <stop offset="100%" stop-color="#33aa33" stop-opacity="0.6" />
    </radialGradient>
    
    <filter id="lightBeam" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur" />
      <feComposite in="blur" in2="SourceGraphic" operator="out" result="blurOut" />
      <feBlend in="SourceGraphic" in2="blurOut" mode="normal" />
    </filter>
    
    <pattern id="windows" patternUnits="userSpaceOnUse" width="8" height="8">
      <rect x="1" y="1" width="2" height="2" fill="#ffff99" fill-opacity="0.8" />
    </pattern>
    
    <pattern id="smallWindows" patternUnits="userSpaceOnUse" width="4" height="4">
      <rect x="0.5" y="0.5" width="1" height="1" fill="#ffff99" fill-opacity="0.8" />
    </pattern>
    
    <linearGradient id="fishGrad" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#44aaff" />
      <stop offset="100%" stop-color="#0066cc" />
    </linearGradient>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Distant stars -->
  <g id="stars">
    <circle cx="20" cy="30" r="0.5" fill="white" />
    <circle cx="40" cy="20" r="0.6" fill="white" />
    <circle cx="60" cy="40" r="0.3" fill="white" />
    <circle cx="80" cy="15" r="0.4" fill="white" />
    <circle cx="120" cy="25" r="0.5" fill="white" />
    <circle cx="140" cy="10" r="0.7" fill="white" />
    <circle cx="170" cy="30" r="0.4" fill="white" />
    <circle cx="200" cy="15" r="0.5" fill="white" />
    <circle cx="220" cy="40" r="0.3" fill="white" />
    <circle cx="250" cy="20" r="0.6" fill="white" />
    <circle cx="270" cy="35" r="0.4" fill="white" />
    <circle cx="290" cy="25" r="0.5" fill="white" />
    <!-- Additional stars -->
    <circle cx="15" cy="50" r="0.3" fill="white" />
    <circle cx="45" cy="60" r="0.2" fill="white" />
    <circle cx="75" cy="35" r="0.4" fill="white" />
    <circle cx="105" cy="15" r="0.3" fill="white" />
    <circle cx="135" cy="45" r="0.2" fill="white" />
    <circle cx="165" cy="55" r="0.3" fill="white" />
    <circle cx="195" cy="40" r="0.4" fill="white" />
    <circle cx="225" cy="25" r="0.3" fill="white" />
    <circle cx="255" cy="50" r="0.2" fill="white" />
    <circle cx="285" cy="45" r="0.3" fill="white" />
  </g>
  
  <!-- Flying fish/creatures in the sky -->
  <g transform="translate(80, 100)">
    <path d="M0,0 C2,-2 5,-3 8,-2 C10,-1 12,1 10,3 C8,5 6,6 3,5 C0,4 -2,2 0,0 Z" fill="url(#fishGrad)" opacity="0.8" />
    <path d="M8,-2 L12,-6 L14,-2 L16,-7" fill="none" stroke="#44aaff" stroke-width="0.5" />
  </g>
  
  <g transform="translate(220, 90)">
    <path d="M0,0 C2,-2 5,-3 8,-2 C10,-1 12,1 10,3 C8,5 6,6 3,5 C0,4 -2,2 0,0 Z" fill="url(#fishGrad)" opacity="0.8" />
    <path d="M8,-2 L12,-6 L14,-2 L16,-7" fill="none" stroke="#44aaff" stroke-width="0.5" />
  </g>
  
  <g transform="translate(180, 70) scale(0.7)">
    <path d="M0,0 C2,-2 5,-3 8,-2 C10,-1 12,1 10,3 C8,5 6,6 3,5 C0,4 -2,2 0,0 Z" fill="url(#fishGrad)" opacity="0.6" />
    <path d="M8,-2 L12,-6 L14,-2 L16,-7" fill="none" stroke="#44aaff" stroke-width="0.5" />
  </g>
  
  <!-- Add some clouds/mist in background -->
  <g opacity="0.3">
    <ellipse cx="70" cy="110" rx="20" ry="6" fill="white" opacity="0.3" />
    <ellipse cx="200" cy="90" rx="25" ry="8" fill="white" opacity="0.3" />
    <ellipse cx="250" cy="130" rx="15" ry="5" fill="white" opacity="0.3" />
  </g>
  
  <!-- Add a few jellyfish in the distance -->
  <g transform="translate(50, 120)" filter="url(#jellyGlow)">
    <ellipse cx="0" cy="0" rx="5" ry="3" fill="url(#jellyGrad2)" opacity="0.7" />
    <path d="M-5,0 Q-3,6 -1,10 T0,14 T1,10 T3,6 T5,0" fill="none" stroke="url(#jellyGrad2)" stroke-width="0.5" opacity="0.7" />
    <!-- Small light beam effect -->
    <ellipse cx="0" cy="-8" rx="15" ry="30" fill="#ff88ff" fill-opacity="0.1" filter="url(#lightBeam)" />
  </g>
  
  <g transform="translate(250, 140)" filter="url(#jellyGlow)">
    <ellipse cx="0" cy="0" rx="6" ry="4" fill="url(#jellyGrad1)" opacity="0.7" />
    <path d="M-6,0 Q-4,8 -2,12 T0,16 T2,12 T4,8 T6,0" fill="none" stroke="url(#jellyGrad1)" stroke-width="0.5" opacity="0.7" />
    <!-- Small light beam effect -->
    <ellipse cx="0" cy="-9" rx="18" ry="35" fill="#88ffff" fill-opacity="0.1" filter="url(#lightBeam)" />
  </g>
  
  <g transform="translate(70, 220)" filter="url(#jellyGlow)">
    <ellipse cx="0" cy="0" rx="4" ry="2" fill="url(#jellyGrad3)" opacity="0.6" />
    <path d="M-4,0 Q-3,5 -1,8 T0,11 T1,8 T3,5 T4,0" fill="none" stroke="url(#jellyGrad3)" stroke-width="0.5" opacity="0.6" />
    <!-- Small light beam effect -->
    <ellipse cx="0" cy="-6" rx="12" ry="25" fill="#aaffaa" fill-opacity="0.1" filter="url(#lightBeam)" />
  </g>
  
  <!-- Jellyfish 1 - blue -->
  <g transform="translate(210, 160)" filter="url(#jellyGlow)">
    <ellipse cx="0" cy="0" rx="15" ry="10" fill="url(#jellyGrad1)" />
    <path d="M-15,0 Q-10,20 -5,30 T0,40 T5,30 T10,20 T15,0" fill="none" stroke="url(#jellyGrad1)" stroke-width="1" />
    <path d="M-12,0 Q-8,15 -4,25 T0,35 T4,25 T8,15 T12,0" fill="none" stroke="url(#jellyGrad1)" stroke-width="1" />
    <path d="M-9,0 Q-6,10 -3,20 T0,30 T3,20 T6,10 T9,0" fill="none" stroke="url(#jellyGrad1)" stroke-width="1" />
    
    <!-- Light beam effect -->
    <ellipse cx="0" cy="-20" rx="40" ry="80" fill="#88ffff" fill-opacity="0.2" filter="url(#lightBeam)" transform="rotate(-15)" />
  </g>
  
  <!-- Jellyfish 2 - pink -->
  <g transform="translate(100, 180)" filter="url(#jellyGlow)">
    <ellipse cx="0" cy="0" rx="12" ry="8" fill="url(#jellyGrad2)" />
    <path d="M-12,0 Q-8,15 -4,25 T0,35 T4,25 T8,15 T12,0" fill="none" stroke="url(#jellyGrad2)" stroke-width="1" />
    <path d="M-9,0 Q-6,10 -3,20 T0,30 T3,20 T6,10 T9,0" fill="none" stroke="url(#jellyGrad2)" stroke-width="1" />
    <path d="M-6,0 Q-4,8 -2,16 T0,24 T2,16 T4,8 T6,0" fill="none" stroke="url(#jellyGrad2)" stroke-width="1" />
    
    <!-- Light beam effect -->
    <ellipse cx="0" cy="-15" rx="30" ry="70" fill="#ff88ff" fill-opacity="0.2" filter="url(#lightBeam)" transform="rotate(15)" />
  </g>
  
  <!-- Jellyfish 3 - green -->
  <g transform="translate(160, 200)" filter="url(#jellyGlow)">
    <ellipse cx="0" cy="0" rx="10" ry="6" fill="url(#jellyGrad3)" />
    <path d="M-10,0 Q-7,12 -3,20 T0,28 T3,20 T7,12 T10,0" fill="none" stroke="url(#jellyGrad3)" stroke-width="1" />
    <path d="M-8,0 Q-5,10 -2,18 T0,25 T2,18 T5,10 T8,0" fill="none" stroke="url(#jellyGrad3)" stroke-width="1" />
    <path d="M-5,0 Q-3,8 -1,14 T0,20 T1,14 T3,8 T5,0" fill="none" stroke="url(#jellyGrad3)" stroke-width="1" />
    
    <!-- Light beam effect -->
    <ellipse cx="0" cy="-12" rx="25" ry="60" fill="#aaffaa" fill-opacity="0.2" filter="url(#lightBeam)" transform="rotate(-5)" />
  </g>
  
  <!-- Floating Island -->
  <g transform="translate(150, 120)">
    <!-- Island bottom side with light effect -->
    <path d="M-80,0 Q-75,12 -70,18 T-60,28 T-40,33 T-20,35 T0,36 T20,35 T40,33 T60,28 T70,18 T80,0" fill="url(#islandSide)" />
    
    <!-- Underlit effect on island bottom from jellyfish -->
    <ellipse cx="-20" cy="20" rx="30" ry="12" fill="#ff88ff" fill-opacity="0.2" filter="url(#jellyGlow)" />
    <ellipse cx="30" cy="25" rx="40" ry="10" fill="#88ffff" fill-opacity="0.2" filter="url(#jellyGlow)" />
    <ellipse cx="0" cy="28" rx="25" ry="8" fill="#aaffaa" fill-opacity="0.2" filter="url(#jellyGlow)" />
    
    <!-- Island top surface - drawn after the side to ensure correct layering -->
    <ellipse cx="0" cy="0" rx="80" ry="40" fill="url(#islandTop)" />
    
    <!-- Terrain details on island -->
    <path d="M-70,-5 Q-60,-8 -50,-6 T-30,-10 T-10,-7 T10,-8 T30,-6 T50,-9 T70,-4" 
          fill="none" stroke="#4a8060" stroke-width="1.5" opacity="0.6" />
    <path d="M-65,-15 Q-55,-12 -45,-14 T-25,-10 T-5,-13 T15,-11 T35,-13 T55,-10 T65,-14" 
          fill="none" stroke="#4a8060" stroke-width="1" opacity="0.5" />
    
    <!-- Rocks -->
    <path d="M-70,-10 L-65,-20 L-60,-12 L-55,-25 L-50,-15 Z" fill="#555" />
    <path d="M50,-15 L60,-25 L65,-18 L70,-22 L75,-10 Z" fill="#666" />
    <ellipse cx="-55" cy="-15" rx="3" ry="2" fill="#444" />
    <ellipse cx="65" cy="-12" rx="4" ry="2" fill="#444" />
    
    <!-- Small vegetation -->
    <ellipse cx="-60" cy="-12" rx="8" ry="4" fill="#2d8044" />
    <ellipse cx="-40" cy="-15" rx="10" ry="5" fill="#3a7050" />
    <ellipse cx="30" cy="-10" rx="12" ry="6" fill="#2d8044" />
    <ellipse cx="60" cy="-13" rx="9" ry="4" fill="#3a7050" />
    
    <!-- Trees -->
    <rect x="-63" y="-16" width="1.5" height="4" fill="#5d3b14" />
    <ellipse cx="-62" cy="-18" rx="3" ry="4" fill="#1a4030" />
    
    <rect x="-38" y="-20" width="1.5" height="5" fill="#5d3b14" />
    <ellipse cx="-37" cy="-22" rx="4" ry="5" fill="#2a5040" />
    
    <rect x="32" y="-16" width="1.5" height="6" fill="#5d3b14" />
    <ellipse cx="33" cy="-19" rx="4" ry="6" fill="#1a4030" />
    
    <!-- Skyscrapers -->
    <!-- Tall central tower -->
    <rect x="-5" y="-75" width="10" height="65" fill="url(#buildingGrad1)" />
    <rect x="-2" y="-85" width="4" height="10" fill="#333" />
    <rect x="-5" y="-75" width="10" height="65" fill-opacity="0.3" fill="url(#windows)" />
    <!-- Antenna -->
    <line x1="0" y1="-85" x2="0" y2="-90" stroke="#666" stroke-width="0.5" />
    <circle cx="0" cy="-90" r="1" fill="red" opacity="0.8" />
    
    <!-- Building 2 - Modern with setbacks -->
    <rect x="-25" y="-60" width="15" height="50" fill="url(#buildingGrad2)" />
    <rect x="-22" y="-65" width="9" height="5" fill="#444" />
    <rect x="-25" y="-60" width="15" height="50" fill-opacity="0.3" fill="url(#windows)" />
    <!-- Setbacks -->
    <rect x="-23" y="-45" width="11" height="2" fill="#222" />
    <rect x="-21" y="-30" width="7" height="2" fill="#222" />
    
    <!-- Building 3 - Glass tower -->
    <rect x="15" y="-55" width="12" height="45" fill="url(#glassGrad)" />
    <rect x="17" y="-60" width="8" height="5" fill="#4477aa" opacity="0.6" />
    <!-- Glass panel details -->
    <path d="M15,-55 v45 M19,-55 v45 M23,-55 v45 M27,-55 v45" stroke="#88aaff" stroke-width="0.5" opacity="0.5" />
    <path d="M15,-51 h12 M15,-47 h12 M15,-43 h12 M15,-39 h12 M15,-35 h12 M15,-31 h12 M15,-27 h12 M15,-23 h12 M15,-19 h12 M15,-15 h12" 
          stroke="#88aaff" stroke-width="0.5" opacity="0.5" />
    
    <!-- Building 4 - Unique shape -->
    <path d="M-45,-40 L-55,-40 L-55,-10 L-45,-10 Z" fill="url(#buildingGrad2)" />
    <path d="M-45,-40 L-35,-30 L-35,0 L-45,-10 Z" fill="#444" />
    <path d="M-45,-40 L-55,-40 L-55,-10 L-45,-10 Z" fill-opacity="0.3" fill="url(#windows)" />
    <path d="M-45,-40 L-35,-30 L-35,0 L-45,-10 Z" fill-opacity="0.3" fill="url(#windows)" />
    <!-- Architectural details -->
    <path d="M-45,-40 L-35,-30" stroke="#555" stroke-width="1" />
    <path d="M-45,-25 L-35,-15" stroke="#555" stroke-width="1" />
    <path d="M-55,-25 L-45,-25" stroke="#555" stroke-width="1" />
    
    <!-- Building 5 - Cylindrical -->
    <ellipse cx="35" cy="-30" rx="8" ry="8" fill="url(#buildingGrad1)" />
    <rect x="27" y="-30" width="16" height="20" fill="url(#buildingGrad1)" />
    <ellipse cx="35" cy="-10" rx="8" ry="3" fill="url(#buildingGrad1)" />
    <rect x="27" y="-30" width="16" height="20" fill-opacity="0.3" fill="url(#smallWindows)" />
    <!-- Circular window pattern -->
    <circle cx="35" cy="-30" r="5" fill="none" stroke="#666" stroke-width="0.5" />
    <circle cx="35" cy="-30" r="3" fill="none" stroke="#666" stroke-width="0.5" />
    
    <!-- Building 6 - Small pagoda-like structure -->
    <rect x="-70" y="-25" width="10" height="15" fill="url(#buildingGrad2)" />
    <rect x="-70" y="-25" width="10" height="15" fill-opacity="0.3" fill="url(#windows)" />
    <path d="M-72,-25 L-65,-32 L-58,-25 Z" fill="#555" />
    <!-- Decorative elements -->
    <path d="M-70,-20 h10 M-70,-15 h10" stroke="#666" stroke-width="0.5" />
    
    <!-- Building 7 - Wide modern building -->
    <rect x="50" y="-30" width="20" height="20" fill="url(#buildingGrad2)" />
    <rect x="50" y="-30" width="20" height="20" fill-opacity="0.3" fill="url(#windows)" />
    <rect x="53" y="-35" width="14" height="5" fill="#444" />
    <!-- Architectural details -->
    <rect x="52" y="-25" width="16" height="1" fill="#333" />
    <rect x="52" y="-20" width="16" height="1" fill="#333" />
    <rect x="52" y="-15" width="16" height="1" fill="#333" />
    
    <!-- New Building 8 - Futuristic floating structure -->
    <ellipse cx="-15" cy="-30" rx="7" ry="3" fill="#555" />
    <rect x="-20" y="-40" width="10" height="10" fill="url(#glassGrad)" />
    <path d="M-20,-40 l10,0 l0,10 l-10,0 Z" fill="none" stroke="#4477aa" stroke-width="0.5" />
    <line x1="-15" y1="-40" x2="-15" y2="-30" stroke="#4477aa" stroke-width="0.5" />
    <line x1="-20" y1="-35" x2="-10" y2="-35" stroke="#4477aa" stroke-width="0.5" />
    
    <!-- Bridge connecting buildings -->
    <path d="M-10,-40 Q0,-44 10,-40" fill="none" stroke="#555" stroke-width="1.5" />
    <path d="M-10,-42 Q0,-46 10,-42" fill="none" stroke="#555" stroke-width="0.5" />
  </g>
  
  <!-- Add some clouds/mist around the floating island -->
  <g opacity="0.6">
    <ellipse cx="100" cy="140" rx="30" ry="10" fill="white" opacity="0.3" />
    <ellipse cx="180" cy="145" rx="25" ry="8" fill="white" opacity="0.3" />
    <ellipse cx="140" cy="150" rx="35" ry="12" fill="white" opacity="0.3" />
    <ellipse cx="220" cy="135" rx="20" ry="7" fill="white" opacity="0.3" />
    <ellipse cx="80" cy="130" rx="15" ry="5" fill="white" opacity="0.3" />
  </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 adheres closely to the prompt, depicting a detailed floating island with skyscrapers and bioluminescent jellyfish.

    The use of colors and the atmospheric night sky enhance the visual appeal.

    Player 1's image lacks detail and does not clearly represent the elements described in the prompt.

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

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

Player 1
4
Player 2
27
Circles

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

Player 1
Player 2
25
Ellipses

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

Player 1
Player 2
36
Lines

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

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

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

Player 1
3
Player 2
13

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
10
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
Player 2
2
Filters

The number of filter definitions (filter) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
31

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
29

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
5
Player 2
13

Complexity Metrics

Path Commands

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

Player 1
21
Player 2
212
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
14
Use Elements

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

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