Model: anthropic/claude-opus-4-7
Generate an SVG of a pelican riding a bicycle
<svg viewBox="0 0 400 300" xmlns="http://www.w3.org/2000/svg">
<!-- Sky background -->
<rect width="400" height="300" fill="#87CEEB"/>
<!-- Ground -->
<rect y="260" width="400" height="40" fill="#90EE90"/>
<!-- Bicycle -->
<!-- Back wheel -->
<circle cx="100" cy="220" r="35" fill="none" stroke="#333" stroke-width="3"/>
<circle cx="100" cy="220" r="5" fill="#333"/>
<!-- Back wheel spokes -->
<line x1="100" y1="185" x2="100" y2="255" stroke="#666" stroke-width="1"/>
<line x1="65" y1="220" x2="135" y2="220" stroke="#666" stroke-width="1"/>
<line x1="75" y1="195" x2="125" y2="245" stroke="#666" stroke-width="1"/>
<line x1="125" y1="195" x2="75" y2="245" stroke="#666" stroke-width="1"/>
<!-- Front wheel -->
<circle cx="280" cy="220" r="35" fill="none" stroke="#333" stroke-width="3"/>
<circle cx="280" cy="220" r="5" fill="#333"/>
<!-- Front wheel spokes -->
<line x1="280" y1="185" x2="280" y2="255" stroke="#666" stroke-width="1"/>
<line x1="245" y1="220" x2="315" y2="220" stroke="#666" stroke-width="1"/>
<line x1="255" y1="195" x2="305" y2="245" stroke="#666" stroke-width="1"/>
<line x1="305" y1="195" x2="255" y2="245" stroke="#666" stroke-width="1"/>
<!-- Bicycle frame -->
<line x1="100" y1="220" x2="190" y2="170" stroke="#D2001C" stroke-width="5"/>
<line x1="190" y1="170" x2="280" y2="220" stroke="#D2001C" stroke-width="5"/>
<line x1="190" y1="170" x2="190" y2="220" stroke="#D2001C" stroke-width="5"/>
<line x1="100" y1="220" x2="190" y2="220" stroke="#D2001C" stroke-width="5"/>
<line x1="280" y1="220" x2="260" y2="160" stroke="#D2001C" stroke-width="5"/>
<!-- Handlebars -->
<line x1="260" y1="160" x2="245" y2="150" stroke="#333" stroke-width="4"/>
<line x1="260" y1="160" x2="275" y2="150" stroke="#333" stroke-width="4"/>
<!-- Seat -->
<ellipse cx="190" cy="165" rx="15" ry="5" fill="#333"/>
<!-- Pedals -->
<circle cx="190" cy="220" r="4" fill="#333"/>
<line x1="190" y1="220" x2="175" y2="235" stroke="#333" stroke-width="3"/>
<line x1="190" y1="220" x2="205" y2="205" stroke="#333" stroke-width="3"/>
<rect x="170" y="233" width="10" height="4" fill="#333"/>
<rect x="200" y="201" width="10" height="4" fill="#333"/>
<!-- Pelican body -->
<ellipse cx="190" cy="140" rx="40" ry="35" fill="#F5F5F5" stroke="#333" stroke-width="2"/>
<!-- Pelican wing -->
<path d="M 175 130 Q 155 145 170 170 Q 185 165 195 150 Z" fill="#E0E0E0" stroke="#333" stroke-width="2"/>
<!-- Pelican neck -->
<path d="M 215 120 Q 230 100 245 95 L 250 115 Q 235 125 220 135 Z" fill="#F5F5F5" stroke="#333" stroke-width="2"/>
<!-- Pelican head -->
<circle cx="250" cy="95" r="22" fill="#F5F5F5" stroke="#333" stroke-width="2"/>
<!-- Pelican eye -->
<circle cx="258" cy="88" r="3" fill="#333"/>
<circle cx="259" cy="87" r="1" fill="#FFF"/>
<!-- Pelican beak (upper) -->
<path d="M 265 95 L 310 92 L 310 100 L 265 103 Z" fill="#FFA500" stroke="#333" stroke-width="2"/>
<!-- Pelican pouch/lower beak -->
<path d="M 265 100 Q 290 125 310 100 L 310 100 Z" fill="#FFB84D" stroke="#333" stroke-width="2"/>
<!-- Pelican legs pedaling -->
<line x1="185" y1="170" x2="175" y2="235" stroke="#FFA500" stroke-width="4"/>
<line x1="195" y1="170" x2="205" y2="205" stroke="#FFA500" stroke-width="4"/>
<!-- Pelican feet -->
<ellipse cx="175" cy="237" rx="6" ry="3" fill="#FFA500" stroke="#333" stroke-width="1"/>
<ellipse cx="205" cy="207" rx="6" ry="3" fill="#FFA500" stroke="#333" stroke-width="1"/>
<!-- Pelican wing detail -->
<path d="M 170 160 Q 175 165 180 160" fill="none" stroke="#333" stroke-width="1"/>
<path d="M 168 155 Q 173 160 178 155" fill="none" stroke="#333" stroke-width="1"/>
<!-- Small cloud -->
<ellipse cx="60" cy="60" rx="25" ry="10" fill="#FFF" opacity="0.9"/>
<ellipse cx="75" cy="55" rx="20" ry="12" fill="#FFF" opacity="0.9"/>
<!-- Sun -->
<circle cx="350" cy="50" r="20" fill="#FFD700"/>
</svg>I've created an SVG of a pelican riding a bicycle! The illustration includes:
- A red bicycle with spoked wheels, a frame, handlebars, seat, and pedals
- A white pelican with its characteristic large orange beak and throat pouch
- The pelican's legs reaching down to the pedals, showing it's actively pedaling
- Background elements including a blue sky, green ground, a fluffy cloud, and a bright yellow sun
The pelican is seated on the bike with its wing visible on the side, its head turned forward with an eye watching the road ahead, and its feet on the pedals in different positions to suggest motion.
30 input, 2,697 output