Creative Challenge
"A neon jellyfish orbiting a giant silver apple under a starry sky"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#0b0c10"/>
<stop offset="100%" stop-color="#1f2833"/>
</linearGradient>
<radialGradient id="appleGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#c0c0c0"/>
<stop offset="100%" stop-color="#606060"/>
</radialGradient>
<radialGradient id="jellyGradient" cx="0.5" cy="0.5" r="0.5">
<stop offset="0%" stop-color="#ff00ff"/>
<stop offset="100%" stop-color="#00ffff"/>
</radialGradient>
<filter id="glow">
<feGaussianBlur stdDeviation="3.5" result="coloredBlur"/>
<feMerge>
<feMergeNode in="coloredBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
<pattern id="starPattern" patternUnits="userSpaceOnUse" width="4" height="4">
<circle cx="1" cy="1" r="0.5" fill="white" />
</pattern>
</defs>
<!-- Background -->
<rect width="300" height="300" fill="url(#bgGradient)" />
<rect width="300" height="300" fill="url(#starPattern)" opacity="0.05" />
<!-- Giant Silver Apple -->
<g transform="translate(150,150)">
<circle r="60" fill="url(#appleGradient)" stroke="#fff" stroke-width="2"/>
<path d="M0,-60 Q10,-70 20,-60" stroke="#ccc" stroke-width="2" fill="none"/>
<line x1="0" y1="-60" x2="0" y2="-80" stroke="#999" stroke-width="2"/>
<ellipse cx="0" cy="-80" rx="5" ry="2" fill="#666"/>
</g>
<!-- Neon Jellyfish -->
<g transform="translate(150,150)">
<!-- Orbit Path -->
<circle r="100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-dasharray="4,4" />
<!-- Jellyfish Body -->
<g transform="rotate(45) translate(100,0)">
<ellipse cx="0" cy="0" rx="20" ry="10" fill="url(#jellyGradient)" filter="url(#glow)" />
<!-- Tentacles -->
<path d="M0,10 C-5,20 -10,30 0,40" stroke="#ff00ff" stroke-width="2" fill="none" filter="url(#glow)" />
<path d="M0,10 C5,20 10,30 0,40" stroke="#00ffff" stroke-width="2" fill="none" filter="url(#glow)" />
<path d="M0,10 C-3,18 -6,26 0,34" stroke="#ff00ff" stroke-width="1.5" fill="none" filter="url(#glow)" />
<path d="M0,10 C3,18 6,26 0,34" stroke="#00ffff" stroke-width="1.5" fill="none" filter="url(#glow)" />
</g>
</g>
<!-- Additional Stars -->
<circle cx="50" cy="50" r="1" fill="white" opacity="0.8"/>
<circle cx="250" cy="80" r="0.8" fill="white" opacity="0.7"/>
<circle cx="100" cy="220" r="1.2" fill="white" opacity="0.9"/>
<circle cx="220" cy="30" r="0.5" fill="white" opacity="0.6"/>
<circle cx="280" cy="200" r="0.7" fill="white" opacity="0.75"/>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Background with starry sky -->
<rect width="300" height="300" fill="rgb(12, 12, 12)" />
<g id="stars">
<circle cx="50" cy="50" r="1" fill="white" opacity="0.5" />
<circle cx="80" cy="100" r="1.5" fill="white" opacity="0.3" />
<circle cx="200" cy="150" r="1" fill="white" opacity="0.6" />
<circle cx="150" cy="80" r="1.2" fill="white" opacity="0.4" />
<circle cx="250" cy="220" r="1.5" fill="white" opacity="0.2" />
<circle cx="100" cy="200" r="1" fill="white" opacity="0.5" />
<circle cx="220" cy="100" r="1.3" fill="white" opacity="0.3" />
<circle cx="280" cy="280" r="1.4" fill="white" opacity="0.3" />
<circle cx="60" cy="280" r="1.6" fill="white" opacity="0.2" />
<circle cx="300" cy="150" r="1.2" fill="white" opacity="0.3" />
</g>
<!-- Giant silver apple -->
<g transform="translate(150 150)">
<defs>
<linearGradient id="appleGradient" x1="0%" y1="0%" x2="100%" y2="100%" gradientUnits="userSpaceOnUse" >
<stop offset="0%" style="stop-color: #999999;stop-opacity:1" />
<stop offset="100%" style="stop-color: #555555;stop-opacity:1" />
</linearGradient>
<path id="applePath" d="M-100-150Q-50-150 0-130 50-150 100-150Q150-130 150-50 150-150 -150-150 -150-50 -150-150 -100-150Z" />
</defs>
<ellipse cx="0" cy="0" rx="100" ry="150" fill="url(#appleGradient)" />
<circle cx="0" cy="-20" r="30" fill="white" opacity="0.4" />
<circle cx="0" cy="-30" r="20" fill="white" opacity="0.3" />
<rect x="-10" y="-50" width="20" height="40" fill="#666666" />
</g>
<!-- Neon jellyfish -->
<g id="jellyfish" transform="rotate(45 150 150) translate(100 0)">
<defs>
<linearGradient id="jellyfishGradient" x1="0%" y1="0%" x2="100%" y2="100%" gradientUnits="userSpaceOnUse" >
<stop offset="0%" style="stop-color: #ff00ff;stop-opacity:1" />
<stop offset="100%" style="stop-color: #0000ff;stop-opacity:1" />
</linearGradient>
<filter id="glowFilter">
<feDropShadow dx="0" dy="0" stdDeviation="5" color="#00ff00" />
</filter>
</defs>
<ellipse cx="0" cy="0" rx="40" ry="30" fill="url(#jellyfishGradient)" filter="url(#glowFilter)" />
<path d="M0 0 Q 20 -30 40 0 Q 60 -30 80 0 Q 100 -30 120 0" style="stroke: url(#jellyfishGradient); stroke-width: 4; fill:none; opacity:0.8" />
<path d="M0 0 Q -20 -30 -40 0 Q -60 -30 -80 0 Q -100 -30 -120 0" style="stroke: url(#jellyfishGradient); stroke-width: 4; fill:none; opacity:0.8" />
</g>
<!-- Animation for jellyfish orbit -->
<animateTransform
xlink:href="#jellyfish"
attributeName="transform"
type="rotate(360)"
from="rotate(45 150 150) translate(100 0)"
to="rotate(405 150 150) translate(100 0)"
dur="8s"
repeatCount="indefinite"
additive="sum"
/>
<!-- Floating elements -->
<g transform="translate(150 150) rotate(30 150 150)">
<circle cx="0" cy="0" r="20" fill="url(#jellyfishGradient)" opacity="0.3" />
<circle cx="100" cy="-50" r="15" fill="url(#jellyfishGradient)" opacity="0.2" />
<circle cx="-50" cy="-100" r="10" fill="url(#jellyfishGradient)" opacity="0.1" />
</g>
</svg>
Judge's Analysis
Failed to determine a winner: Could not determine a winner from response: I'm sorry, I can't evaluate the second image as it failed to load.
Could you provide a valid image for Player 2?
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
The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.
The number of rectangle elements (rect) in the SVG.
The number of circle elements (circle) in the SVG.
The number of ellipse elements (ellipse) in the SVG.
The number of line elements (line) in the SVG.
The number of polygon elements (polygon) in the SVG.
The number of path elements (path) in the SVG.
The number of group elements (g) in the SVG.
Visual Effects Metrics
The number of gradient definitions (linearGradient, radialGradient) in the SVG.
The number of pattern definitions (pattern) in the SVG.
The number of filter definitions (filter) in the SVG.
The number of mask definitions (mask) in the SVG.
The number of clipping path definitions (clipPath) in the SVG.
The number of elements with opacity attributes in the SVG.
The number of elements with stroke attributes in the SVG.
Colors Metrics
The number of unique colors used in the SVG.
Interactivity Metrics
The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.
The number of elements with transform attributes in the SVG.
Complexity Metrics
The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.
The maximum nesting level of group elements (g) in the SVG.
The number of elements defined within the defs element in the SVG.
The number of use elements (use) in the SVG.
Text Metrics
The number of text elements (text) in the SVG.
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
"A flying cat wearing a UFO as a hat, hovering above candy mountains"
"Umbrella growing from a teacup"
"Flying fish with balloon wings over a cityscape"
"Astronaut penguin juggling planets in space"
"Surreal clock with melting numbers and flying teacup"
"Tomato moon cheese cityscape under a sunflower sun"