创客贴智能海报设计
Verified创客贴智能海报设计 — software development tool with Banner support.
$ Add to .claude/skills/ About This Skill
Content available in Chinese
# 创客贴智能海报设计
根据用户的设计需求,调用创客贴智能设计服务生成海报缩略图并展示。
执行流程
Step 1: 调用智能设计API
使用 HTTP GET 请求调用创客贴设计服务,将用户的原始设计需求作为 `prompt` 参数传入:
```bash curl -G "https://gw.chuangkit.com/openplatform/intelligentDesign/api/generate" \ --data-urlencode "prompt=用户的设计需求" ```
API 返回 JSON 格式,结构如下:
```json { "body": { "code": 200, "msg": "success", "data": [ { "taskId": "任务ID", "designId": "设计ID", "imageUrl": "缩略图地址", "redirectUrl": "编辑跳转地址" } ] }, "header": { "code": "1" } } ```
每个设计结果包含:`imageUrl`(缩略图地址)和 `redirectUrl`(在线编辑地址)。
Step 2: 解析并展示结果
根据返回的 `body.code` 判断执行结果:
- code != 200:设计生成失败,向用户提示错误信息(`body.msg`)。
- code == 200:设计生成成功,执行以下操作:
- 1. 从 `body.data` 数组中取第一个设计结果的 `imageUrl`
- 2. 使用默认浏览器打开该缩略图地址展示给用户
打开浏览器命令参考:
```bash # macOS open "缩略图URL"
# Windows start "缩略图URL"
# Linux xdg-open "缩略图URL" ```
注意事项
- `prompt` 参数需要进行 URL 编码(--data-urlencode 会自动处理)
- API 可能返回多个设计结果,默认取第一个展示
- 如果用户需要查看更多设计方案,可以遍历 `data` 数组中的其他结果
Use Cases
- Generate poster thumbnails from natural language design descriptions via Chuangkit API
- Create invitation cards, daily inspiration images, and event banners from text prompts
- Design Xiaohongshu cover images and product posters with AI-powered layout
- Produce web banners and promotional graphics by describing the design intent
- Preview multiple design variations and open the preferred one in Chuangkit's online editor
Pros & Cons
Pros
- +One-step API call generates design thumbnails — no design software knowledge needed
- +Returned redirectUrl allows editing the generated design in Chuangkit's full editor
- +Cross-platform browser opening support (macOS, Windows, Linux) built into the workflow
Cons
- -Depends on Chuangkit's external API which may have rate limits or availability issues
- -Chinese-only service and documentation — not designed for international design workflows
- -Output is a thumbnail preview — full resolution requires visiting the Chuangkit editor
FAQ
What does 创客贴智能海报设计 do?
What platforms support 创客贴智能海报设计?
What are the use cases for 创客贴智能海报设计?
100+ free AI tools
Writing, PDF, image, and developer tools — all in your browser.
Next Step
Use the skill detail page to evaluate fit and install steps. For a direct browser workflow, move into a focused tool route instead of staying in broader support surfaces.