← All skills
Tencent SkillHub · AI

aliyun-image

阿里云百炼图像生成、编辑与翻译。文生图:根据文本生成图像,支持复杂文字渲染。图像编辑:单图编辑、多图融合、风格迁移、物体增删。图像翻译:翻译图像中的文字,保留原始排版,支持11种源语言和14种目标语言。触发词:生成图片、AI作画、文生图、图像编辑、修图、换背景、风格迁移、多图融合、图像翻译、图片翻译。模型:qwen-image-plus(默认)、qwen-image-max、qwen-image-edit-plus(默认)、qwen-image-edit-max、qwen-mt-image。

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

阿里云百炼图像生成、编辑与翻译。文生图:根据文本生成图像,支持复杂文字渲染。图像编辑:单图编辑、多图融合、风格迁移、物体增删。图像翻译:翻译图像中的文字,保留原始排版,支持11种源语言和14种目标语言。触发词:生成图片、AI作画、文生图、图像编辑、修图、换背景、风格迁移、多图融合、图像翻译、图片翻译。模型:qwen-image-plus(默认)、qwen-image-max、qwen-image-edit-plus(默认)、qwen-image-edit-max、qwen-mt-image。

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, metadata.json, references/image-edit.md, references/image-translate.md, references/text-to-image.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

阿里云百炼图像生成与编辑

🔄 同步更新:本项目在 GitHub 和 ClawHub 同步发布。

前提条件

# 配置 API Key export DASHSCOPE_API_KEY="sk-xxxx"

文生图

import os, requests resp = requests.post( "https://dashscope.aliyuncs.com/api/v1/services/aigc/multimodal-generation/generation", headers={"Authorization": f"Bearer {os.getenv('DASHSCOPE_API_KEY')}"}, json={ "model": "qwen-image-plus", "input": {"messages": [{"role": "user", "content": [{"text": "一只橘猫在阳光下打盹"}]}]}, "parameters": {"prompt_extend": True, "watermark": False} } ) print(resp.json()["output"]["choices"][0]["message"]["content"][0]["image"])

图像编辑

resp = requests.post( "https://dashscope.aliyuncs.com/api/v1/services/aigc/multimodal-generation/generation", headers={"Authorization": f"Bearer {os.getenv('DASHSCOPE_API_KEY')}"}, json={ "model": "qwen-image-edit-plus", "input": {"messages": [{"role": "user", "content": [ {"image": "https://example.com/photo.jpg"}, {"text": "把背景换成星空"} ]}]}, "parameters": {"prompt_extend": True, "watermark": False} } ) print(resp.json()["output"]["choices"][0]["message"]["content"][0]["image"])

图像翻译

import os, requests, time # 1. 创建翻译任务 resp = requests.post( "https://dashscope.aliyuncs.com/api/v1/services/aigc/image2image/image-synthesis", headers={ "Authorization": f"Bearer {os.getenv('DASHSCOPE_API_KEY')}", "X-DashScope-Async": "enable" }, json={ "model": "qwen-mt-image", "input": { "image_url": "https://example.com/english-poster.jpg", "source_lang": "en", "target_lang": "zh" } } ) task_id = resp.json()["output"]["task_id"] # 2. 轮询获取结果 while True: time.sleep(3) result = requests.get( f"https://dashscope.aliyuncs.com/api/v1/tasks/{task_id}", headers={"Authorization": f"Bearer {os.getenv('DASHSCOPE_API_KEY')}"} ).json() if result["output"]["task_status"] == "SUCCEEDED": print(result["output"]["image_url"]) break

默认配置

场景默认模型高质量模型文生图qwen-image-plusqwen-image-max图像编辑qwen-image-edit-plusqwen-image-edit-max图像翻译qwen-mt-image- 规则:默认使用 Plus 系列,仅当用户明确要求"最好的"、"最高质量"时使用 Max 系列。

默认参数

{ "negative_prompt": "低分辨率,低画质,肢体畸形,手指畸形,画面过饱和,蜡像感", "prompt_extend": true, "watermark": false }

详细参考

按需加载以下文档: 文档用途references/text-to-image.md文生图完整API参考:模型列表、分辨率、所有参数references/image-edit.md图像编辑完整API参考:单图编辑、多图融合、输入要求references/image-translate.md图像翻译完整API参考:支持语言、异步调用、术语定义

工具脚本

脚本用途scripts/client.py封装好的API客户端,支持文生图、图像编辑和图像翻译 使用脚本: # 文生图 python scripts/client.py generate "一只橘猫在阳光下打盹" --size 1920*1080 # 图像编辑 python scripts/client.py edit "https://example.com/photo.jpg" "把背景换成星空" -n 2 # 图像翻译 python scripts/client.py translate "https://example.com/english.jpg" --source en --target zh

关键注意事项

图像URL有效期:生成的图像URL仅保留 24小时,请及时下载 地域:API Key 和请求地址必须属于同一地域(北京/新加坡) 费用:按成功生成的图像张数计费

常见错误

错误码原因解决方案InvalidApiKeyAPI Key无效检查环境变量配置InvalidParameter参数错误检查请求格式DataInspectionFailed内容审核失败修改输入内容

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
5 Docs1 Config
  • SKILL.md Primary doc
  • README.md Docs
  • references/image-edit.md Docs
  • references/image-translate.md Docs
  • references/text-to-image.md Docs
  • metadata.json Config