Creative Challenge
"Floating jellyfish cityscape under a crescent moon"
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
<!-- Crescent Moon -->
<circle cx="250" cy="50" r="45" fill="white" />
<path d="M175,50 a50,50 0 0,0 100,0" fill="white" />
<!-- Starry Sky -->
<circle cx="20" cy="20" r="1" fill="white" />
<circle cx="100" cy="10" r="1" fill="white" />
<circle cx="200" cy="30" r="1" fill="white" />
<circle cx="280" cy="20" r="1" fill="white" />
<!-- Additional stars can be added for a more detailed sky -->
<!-- Jellyfish Cityscape -->
<path d="M50,300 Q70,220 140,200 Q220,180 200,100 Q185,30 100,50 Q60,70 40,100 Z" fill="#FFD700" />
<path d="M80,250 Q100,200 130,200 Q170,200 180,150 Q190,100 120,120 Q90,130 70,160 Z" fill="#FF69B4" />
<path d="M200,250 Q250,210 220,190 Q190,170 180,120 Q170,70 140,100 Q120,130 150,200 Z" fill="#00BFFF" />
<!-- Additional jellyfish can be added to create a cityscape -->
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#1a1a40" />
<stop offset="100%" stop-color="#0b0b1c" />
</linearGradient>
<linearGradient id="moonGradient" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#f4e3d7" />
<stop offset="100%" stop-color="#d8c3a5" />
</linearGradient>
<radialGradient id="jellyGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
<stop offset="0%" stop-color="#ff6f61" stop-opacity="0.8" />
<stop offset="100%" stop-color="#ff6f61" stop-opacity="0" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<circle cx="250" cy="50" r="30" fill="url(#moonGradient)" />
<circle cx="260" cy="40" r="20" fill="#1a1a40" />
<!-- Jellyfish Cityscape -->
<g transform="translate(150, 200)">
<ellipse cx="0" cy="0" rx="80" ry="40" fill="#6a1b9a" opacity="0.8" />
<rect x="-50" y="10" width="100" height="20" fill="#4527a0" />
<rect x="-30" y="30" width="60" height="10" fill="#7e57c2" />
<circle cx="-40" cy="40" r="5" fill="#ffeb3b" />
<circle cx="40" cy="40" r="5" fill="#ffeb3b" />
<polygon points="-20,10 20,10 0,30" fill="#7e57c2" />
<circle cx="0" cy="-20" r="10" fill="url(#jellyGlow)" />
</g>
<g transform="translate(50, 150)">
<ellipse cx="0" cy="0" rx="60" ry="30" fill="#8e24aa" opacity="0.8" />
<rect x="-30" y="10" width="60" height="15" fill="#6a1b9a" />
<rect x="-20" y="25" width="40" height="8" fill="#9c27b0" />
<circle cx="-15" cy="30" r="4" fill="#ffeb3b" />
<circle cx="15" cy="30" r="4" fill="#ffeb3b" />
<polygon points="-10,10 10,10 0,20" fill="#9c27b0" />
<circle cx="0" cy="-15" r="8" fill="url(#jellyGlow)" />
</g>
<g transform="translate(250, 180)">
<ellipse cx="0" cy="0" rx="70" ry="35" fill="#ab47bc" opacity="0.8" />
<rect x="-40" y="10" width="80" height="18" fill="#8e24aa" />
<rect x="-25" y="28" width="50" height="9" fill="#ba68c8" />
<circle cx="-20" cy="35" r="6" fill="#ffeb3b" />
<circle cx="20" cy="35" r="6" fill="#ffeb3b" />
<polygon points="-15,10 15,10 0,25" fill="#ba68c8" />
<circle cx="0" cy="-25" r="12" fill="url(#jellyGlow)" />
</g>
<!-- Ocean Surface -->
<rect x="0" y="250" width="300" height="50" fill="#000033" />
<ellipse cx="75" cy="260" rx="50" ry="10" fill="#002147" />
<ellipse cx="225" cy="260" rx="50" ry="10" fill="#002147" />
<ellipse cx="150" cy="270" rx="100" ry="20" fill="#003366" />
<ellipse cx="50" cy="280" rx="30" ry="10" fill="#004080" />
<ellipse cx="250" cy="280" rx="30" ry="10" fill="#004080" />
</svg>
Judge's Analysis
Player 2's image more closely adheres to the prompt with clear representations of floating jellyfish-like structures under a crescent moon.
The use of colors and composition effectively conveys the idea of a cityscape, while maintaining a visually appealing and technically sound execution.
Player 1's image lacks elements that directly relate to the concept of a floating jellyfish cityscape, making it less relevant to 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
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 cityscape with buildings made of giant fruit"
"Underwater steampunk city with jellyfish streetlights"
"Floating island with a waterfall of stars"
"Whale with butterfly wings swimming through clouds"
"A pineapple wearing a monocle, top hat, and bowtie, floating in a starry galaxy"
"A futuristic cityscape made entirely of giant, glowing neon seashells"