What is Prompt creation?
Prompt creation is the practice of using short instructions to get AI or software to generate specific content. In this article, the author uses Prompts to make the system generate SVG images (scalable vector graphics) that illustrate animal life cycles, character journeys, and the daily routines of various professions. Simply put, the author uses instructions to have the system automatically design and draw images, without drawing them by hand.
What is this article about?
- Core idea: Stop treating AI as a tool, and instead treat it as a “teacher.” The user asks a question, the AI gives an answer based on the prompt, and it can even generate an image to present the result.
- Creative theme: time
- Timeline: Show how an event or person develops over time, such as the evolution of AI technology or the history of rock music.
- Time + space: Combine time and place to show a person's or thing's experiences in different locations.
- A day in a profession: Describe a day in the life of various professions, using emoji to show shifts in mood.
- The life of an animal: Generate life-cycle images for different animals and share related fun facts.
How do you generate SVG images with a Prompt?
The core function of the author's Prompt is to generate SVG images that present the content. Below is example code for generating an animal life cycle:
Prompt example: the life of an animal
(defun 动物生命周期 ()
"生成动物的生命周期SVG图表和描述"
(lambda (主题)
(let* ((生命阶段 (获取生命阶段 主题))
(科普数据 (获取科普数据 主题))
(背景样式 (设计背景 主题))
(时间轴 (创建时间轴 主题))
(阶段emoji (选择阶段emoji 主题))
(装饰emoji (选择装饰emoji 主题))
(副标题 (生成副标题 主题 科普数据)))
(创建优化SVG图表 主题 生命阶段 科普数据 背景样式 时间轴 阶段emoji 装饰emoji 副标题))))
Explanation of the Prompt's functionality
This code looks complex, but what it does is actually simple:
- Input a theme (such as whale, cicada, or giraffe).
- The system generates a life-cycle image of that animal, including key stages, fun facts, and an interesting background pattern.
- The emoji in the image make the presentation more intuitive and vivid.
For example: if you input the theme “whale,” the system will generate an image showing a blue whale's development from fetus to old age, and share fun facts about blue whales, such as “A blue whale's heart weighs as much as 600 kilograms, equivalent to the weight of an elephant!”
Generated image examples
The life of an animal: the cicada's life cycle
The life of an animal: the butterfly's life cycle

A day in a language teacher's life: generate the things people in different professions do in a day, with sharp inner monologue, and use emoji to convey the ups and downs of their mood

Conclusion
This article not only shows how to use Prompts to generate SVG images, but also emphasizes how creators can unlock AI's potential through asking questions and exploring. Going forward, the author plans to continue exploring more themes, and invites everyone to follow his WeChat official account “空格的键盘”.
Original link: Read the full article (source: 产品星球)
