Creative Challenge
"Giraffe with a skyline of famous buildings as its spots"
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
<defs>
<pattern id="skylinePattern" width="1" height="1" patternContentUnits="objectBoundingBox">
<path d="M0,1 L0.1,0.8 L0.2,1 L0.3,0.7 L0.4,1 L0.5,0.6 L0.6,1 L0.7,0.5 L0.8,1 L0.9,0.4 L1,1" fill="#555"/>
</pattern>
<linearGradient id="giraffeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" stop-color="#FFD700"/>
<stop offset="100%" stop-color="#FF6347"/>
</linearGradient>
</defs>
<rect width="300" height="300" fill="url(#giraffeGradient)" />
<path d="M150,280 Q140,260 130,240 Q120,220 110,200 Q100,180 90,160
Q80,140 80,120 Q80,90 90,70 Q100,50 120,50 Q140,50 150,70
Q160,90 170,120 Q180,150 190,180 Q200,210 210,240 Q220,260 230,280"
fill="url(#giraffeGradient)" stroke="#8B4513" stroke-width="4"/>
<circle cx="140" cy="25" r="15" fill="#FFD700" stroke="#8B4513" stroke-width="3"/>
<path d="M140,10 C135,5 125,5 120,10 Q115,15 120,25 Q125,35 130,25 C135,15 145,15 140,10 Z" fill="#FFD700" />
<path d="M142,8 Q145,12 150,11 Q155,10 160,14 Q155,18 150,20" fill="#FFD700" stroke="#8B4513" stroke-width="2"/>
<circle cx="125" cy="20" r="2.5" fill="#8B4513"/>
<circle cx="135" cy="22" r="2.5" fill="#8B4513"/>
<rect x="80" y="70" width="140" height="215" fill-opacity="0" stroke="url(#skylinePattern)" stroke-width="2" />
</svg>
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<linearGradient id="skyGradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#FFD700" />
<stop offset="100%" stop-color="#FF8C00" />
</linearGradient>
<pattern id="buildingPattern" x="0" y="0" width="1" height="1" patternUnits="objectBoundingBox">
<rect x="0" y="0" width="10" height="20" fill="#333"/>
<rect x="12" y="0" width="8" height="30" fill="#555"/>
<rect x="22" y="0" width="6" height="25" fill="#777"/>
<rect x="30" y="0" width="10" height="35" fill="#999"/>
</pattern>
<radialGradient id="bodyGradient" cx="0.5" cy="0.5" r="0.5" fx="0.25" fy="0.25">
<stop offset="0%" stop-color="#F4A460" />
<stop offset="100%" stop-color="#8B4513" />
</radialGradient>
</defs>
<rect width="300" height="300" fill="url(#skyGradient)" />
<g transform="translate(50, 50)">
<ellipse cx="100" cy="100" rx="80" ry="120" fill="url(#bodyGradient)" />
<circle cx="120" cy="60" r="10" fill="#000" />
<circle cx="80" cy="60" r="10" fill="#000" />
<path d="M100,180 Q100,200 120,210 T140,220" fill="none" stroke="#000" stroke-width="3" />
<polygon points="100,60 110,50 90,50" fill="#000" />
<g transform="translate(60, 80)">
<rect x="0" y="0" width="30" height="40" fill="url(#buildingPattern)" />
<rect x="40" y="0" width="20" height="50" fill="url(#buildingPattern)" />
<rect x="80" y="0" width="15" height="45" fill="url(#buildingPattern)" />
</g>
<g transform="translate(20, 120)">
<rect x="0" y="0" width="25" height="35" fill="url(#buildingPattern)" />
<rect x="30" y="0" width="18" height="40" fill="url(#buildingPattern)" />
<rect x="60" y="0" width="12" height="30" fill="url(#buildingPattern)" />
</g>
<g transform="translate(100, 160)">
<rect x="0" y="0" width="20" height="50" fill="url(#buildingPattern)" />
<rect x="25" y="0" width="15" height="45" fill="url(#buildingPattern)" />
<rect x="50" y="0" width="10" height="35" fill="url(#buildingPattern)" />
</g>
</g>
</svg>
Judge's Analysis
Player 2's submission better adheres to the prompt by creatively integrating skyline elements as spots on a giraffe-like shape.
The use of building silhouettes is more pronounced and recognizable, enhancing the visual appeal and creativity of the interpretation.
Player 1's image lacks clear representation of both the giraffe and the skyline concept.
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
"Squirrel DJ spinning acorn records"
"A floating island with clockwork trees under a starry night sky"
"An umbrella tree growing under a waterfall"
"A glowing owl in a neon cityscape at night"
"Skeletal octopus plays a luminous xylophone under a bioluminescent sea"
"A giant cat knitting with skyscraper-sized yarn in a cityscape"