Model: gemini-exp-1206
Generate an SVG of a pelican riding a bicycle
<svg width="400" height="300" viewBox="0 0 400 300" xmlns="http://www.w3.org/2000/svg">
<title>Pelican Riding a Bicycle</title>
<!-- Background (Optional - Sky and Ground) -->
<rect x="0" y="0" width="400" height="200" fill="#87CEEB" /> <!-- Sky -->
<rect x="0" y="200" width="400" height="100" fill="#90EE90" /> <!-- Ground -->
<!-- Bicycle -->
<g id="bicycle">
<!-- Frame -->
<line x1="150" y1="250" x2="250" y2="250" stroke="black" stroke-width="3" />
<line x1="180" y1="220" x2="220" y2="220" stroke="black" stroke-width="3" />
<line x1="150" y1="250" x2="180" y2="220" stroke="black" stroke-width="3" />
<line x1="250" y1="250" x2="220" y2="220" stroke="black" stroke-width="3" />
<line x1="180" y1="220" x2="195" y2="180" stroke="black" stroke-width="3" />
<!-- Wheels -->
<circle cx="150" cy="250" r="30" fill="none" stroke="black" stroke-width="5" />
<circle cx="250" cy="250" r="30" fill="none" stroke="black" stroke-width="5" />
<!-- Spokes (simplified) -->
<line x1="150" y1="250" x2="150" y2="220" stroke="black" stroke-width="1" />
<line x1="150" y1="250" x2="150" y2="280" stroke="black" stroke-width="1" />
<line x1="150" y1="250" x2="171" y2="229" stroke="black" stroke-width="1" />
<line x1="150" y1="250" x2="129" y2="271" stroke="black" stroke-width="1" />
<line x1="250" y1="250" x2="250" y2="220" stroke="black" stroke-width="1" />
<line x1="250" y1="250" x2="250" y2="280" stroke="black" stroke-width="1" />
<line x1="250" y1="250" x2="271" y2="229" stroke="black" stroke-width="1" />
<line x1="250" y1="250" x2="229" y2="271" stroke="black" stroke-width="1" />
<!-- Handlebars -->
<line x1="195" y1="180" x2="185" y2="170" stroke="black" stroke-width="3" />
<line x1="195" y1="180" x2="205" y2="170" stroke="black" stroke-width="3" />
<!-- Seat -->
<rect x="215" y="210" width="10" height="5" fill="brown" stroke="black" stroke-width="1"/>
<!-- Pedals -->
<circle cx="200" cy="250" r="5" fill="black"/>
<rect x="195" y="245" width="10" height="2" fill="black"/>
<rect x="195" y="253" width="10" height="2" fill="black"/>
</g>
<!-- Pelican -->
<g id="pelican" transform="translate(50, 30)">
<!-- Body -->
<ellipse cx="150" cy="170" rx="35" ry="25" fill="white" stroke="black" stroke-width="2" />
<!-- Head -->
<circle cx="185" cy="145" r="20" fill="white" stroke="black" stroke-width="2" />
<!-- Beak -->
<polygon points="195,145 245,135 245,155 205,150" fill="orange" stroke="black" stroke-width="2" />
<line x1="195" y1="145" x2="245" y2="145" stroke="black" stroke-width="2"/>
<!-- Eye -->
<circle cx="195" cy="140" r="3" fill="black" />
<!-- Neck -->
<path d="M 185 160 Q 195 175 150 170" fill="none" stroke="black" stroke-width="2"/>
<!-- Wing -->
<path d="M 150 170 Q 100 150 120 190 Z" fill="white" stroke="black" stroke-width="2"/>
<!-- Legs and Feet (simplified) -->
<line x1="140" y1="195" x2="140" y2="220" stroke="orange" stroke-width="3" />
<line x1="160" y1="195" x2="150" y2="220" stroke="orange" stroke-width="3" />
<path d="M 140 220 L 135 225 L 145 225 Z" fill="orange" />
<path d="M 150 220 L 145 225 L 155 225 Z" fill="orange" />
<!-- Feet on Pedals -->
<g transform="translate(10, 28)">
<path d="M 140 220 L 135 225 L 145 225 Z" fill="orange" />
<path d="M 150 220 L 145 225 L 155 225 Z" fill="orange" />
</g>
</g>
</svg>
Explanation and Key Elements:
<svg>
tag: Defines the SVG canvas, sets the width, height, andviewBox
(important for scaling).<title>
tag: Provides a descriptive title for the image (good for accessibility).- Background (Optional): The
<rect>
elements create a simple sky and ground using blue (#87CEEB) and green (#90EE90) colors. - Bicycle (
<g id="bicycle">
):<line>
elements: Used to create the frame, handlebars, and spokes.<circle>
elements: Form the wheels and the center point for the pedals.<rect>
elements: Used for the seat and pedals.
- Pelican (
<g id="pelican">
):<ellipse>
: Creates the main body shape.<circle>
: Forms the head.<polygon>
: Shapes the distinctive pelican beak, with an added line for the lower mandible.<path>
elements: Used for the curved neck and the wing.d
attribute defines the path using commands likeM
(move to),Q
(quadratic Bezier curve), andZ
(close path).<line>
elements: Create the legs.- The pelican's feet are simplified to triangle shapes using
<path>
. transform="translate(50, 30)"
: This attribute on the pelican's<g>
tag moves the entire pelican group 50 units to the right and 30 units down, positioning it correctly on the bicycle.- The second feet group
transform="translate(10, 28)"
on another<g>
tag moves the feet to be on the pedals.
How to Use:
- Save: Copy the code and save it as an
.svg
file (e.g.,pelican_bike.svg
). - View: Open the
.svg
file in any modern web browser or an SVG editor (like Inkscape).
Customization:
- Colors: Change the
fill
andstroke
attributes to modify colors. - Details: Add more details like feathers, a more complex bicycle frame, or a cycling helmet for the pelican.
- Animation: You could add SVG animation to make the pelican pedal and the wheels turn.
- Styling: Add a
<style>
tag within the<svg>
for more advanced styling with CSS.
This SVG code provides a basic but recognizable depiction of a pelican riding a bicycle. Feel free to experiment and modify it to create your own unique version!