Skip to content

Instantly share code, notes, and snippets.

@simonw
Created August 10, 2025 23:51
Show Gist options
  • Select an option

  • Save simonw/ad927a3849d0aece043afc97559be4bf to your computer and use it in GitHub Desktop.

Select an option

Save simonw/ad927a3849d0aece043afc97559be4bf to your computer and use it in GitHub Desktop.

2025-08-09T06:06:04 conversation: 01k26q0en2k4fwm53hsth4p6ss id: 01k26pzcrp5z1q6htwcqt05522

Model: qwen3-4b-instruct-2507

Prompt

Generate an SVG of a pelican riding a bicycle

Response

I can't generate actual images or files like SVGs directly in this chat, but I can provide you with a complete and ready-to-use SVG code for a fun and imaginative scene: a pelican riding a bicycle.

Just copy the following code into an .svg file (e.g., pelican_bike.svg) or paste it into an HTML document to view it in a browser:

<svg width="600" height="400" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect width="100%" height="100%" fill="#87CEEB"/>

  <!-- Bicycle frame -->
  <rect x="250" y="150" width="40" height="120" fill="#333"/>
  <circle cx="260" cy="150" r="10" fill="#555"/>
  <circle cx="280" cy="150" r="10" fill="#555"/>

  <!-- Bicycle wheels -->
  <circle cx="250" cy="190" r="30" fill="#666" stroke="#000" stroke-width="4"/>
  <circle cx="290" cy="190" r="30" fill="#666" stroke="#000" stroke-width="4"/>

  <!-- Bicycle handlebar -->
  <rect x="250" y="100" width="40" height="8" fill="#555"/>
  <rect x="270" y="90" width="20" height="3" fill="#888"/>

  <!-- Pelican body -->
  <circle cx="260" cy="160" r="40" fill="#FFD700"/>
  
  <!-- Pelican head (more rounded) -->
  <ellipse cx="260" cy="135" rx="25" ry="30" fill="#FFA500"/>

  <!-- Pelican beak -->
  <path d="M240,128 Q250,115 260,128 Q270,140 260,135" stroke="#000" stroke-width="4" fill="none"/>

  <!-- Pelican eyes -->
  <circle cx="250" cy="130" r="4" fill="white"/>
  <circle cx="270" cy="130" r="4" fill="white"/>
  <circle cx="250" cy="130" r="2" fill="black"/>
  <circle cx="270" cy="130" r="2" fill="black"/>

  <!-- Pelican neck -->
  <path d="M260,140 Q280,150 290,155" stroke="#FFA500" stroke-width="6" fill="none"/>

  <!-- Pelican wings (folded) -->
  <polygon points="230,170 240,180 245,175" fill="#FFD700"/>
  <polygon points="290,170 300,180 305,175" fill="#FFD700"/>

  <!-- Pelican tail -->
  <path d="M260,185 Q240,200 260,210 Q280,200 260,185" stroke="#FFA500" stroke-width="6" fill="none"/>

  <!-- Pelican sitting on bike -->
  <text x="300" y="140" font-family="Arial" font-size="24" fill="black" text-anchor="middle">Pelican Riding a Bike!</text>

</svg>

Features of this SVG:

  • A stylized pelican with yellow and orange colors (classic pelican look).
  • The pelican is riding on a simple bicycle made of black lines and rectangles.
  • Wheels, handlebars, and body are clearly defined.
  • Text at the bottom for fun.

💡 Note: This is an artistic and whimsical interpretation — a pelican riding a bike isn't natural, but it's a great creative SVG!

Let me know if you'd like:

  • A more realistic version
  • Animation (e.g., moving bike)
  • Color changes or different poses
  • Additions like a backpack or cityscape!

Enjoy your pelican on two wheels! 🚴‍♂️🦩

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment