name: mediaio-image-to-image-api description: "Transform existing images into new ones using AI via Media.io OpenAPI. Apply style transfers, artistic filters, and creative transformations with models like Seedream, Nano Banana, and more." metadata: {"mediaio":{"emoji":"🎨","requires":{"env":["API_KEY"]}},"publisher":"Community Maintainer","source":"https://platform.media.io/docs/","homepage":"https://developer.media.io/"}
This skill provides Image-to-Image transformation capabilities through the Media.io OpenAPI. Transform your existing images into new creations using state-of-the-art AI models for style transfers, artistic filters, and creative transformations.
Use this skill when you hear: - "image to image", "image-to-image API", "transform image" - "style transfer", "image transformation", "edit image with AI" - "apply artistic filter to image", "image remixing"
The Image-to-Image API supports multiple models:
- Seedream 4.0 (i2i-seedream-v4-0) - High aesthetic quality, 4K support, character consistency
- Nano Banana Pro (i2i-banana-2) - Advanced reasoning, multi-image fusion
- Nano Banana (i2i-banana) - Fast and efficient generation
- Media 2.0 (i2i-media-2.0) - Proprietary native model
| Variable | Required | Description |
|---|---|---|
API_KEY |
Yes | Media.io OpenAPI key, sent as X-API-KEY header. Apply at https://developer.media.io/. |
Seedream 4.0i2i-seedream-v4-0POST https://openapi.media.io/generation/seedream/i2i-seedream-v4-0| Parameter | Type | Required | Description |
|---|---|---|---|
prompt |
string | Yes | Text description for transformation |
image |
string | Yes | Reference image URL for transformation |
ratio |
string | No | Image aspect ratio |
strength |
string | No | How strongly to follow the reference image (0.0-1.0) |
{
"code": 0,
"msg": "",
"data": {
"task_id": "..."
},
"trace_id": "..."
}
pip install requests
import os
from scripts.skill_router import Skill
skill = Skill('scripts/c_api_doc_detail.json')
api_key = os.getenv('API_KEY', '')
if not api_key:
raise RuntimeError('API_KEY is not set')
Windows PowerShell:
$env:API_KEY="your-api-key"
macOS / Linux (bash/zsh):
export API_KEY="your-api-key"
import os
from scripts.skill_router import Skill
skill = Skill('scripts/c_api_doc_detail.json')
api_key = os.getenv('API_KEY', '')
if not api_key:
raise RuntimeError('API_KEY is not set')
result = skill.invoke(
'Seedream 4.0',
{
'prompt': 'transform this photo into an oil painting in the style of Van Gogh, vibrant colors, visible brushstrokes',
'image': 'https://example.com/input-image.jpg'
},
api_key=api_key
)
print(result) # Returns task_id when code=0
import os
from scripts.skill_router import Skill
skill = Skill('scripts/c_api_doc_detail.json')
api_key = os.getenv('API_KEY', '')
if not api_key:
raise RuntimeError('API_KEY is not set')
result = skill.invoke(
'Nano Banana Pro',
{
'prompt': 'enhance this portrait with dramatic cinematic lighting, professional photography quality, shallow depth of field',
'image': 'https://example.com/portrait.jpg'
},
api_key=api_key
)
print(result)
import os
from scripts.skill_router import Skill
skill = Skill('scripts/c_api_doc_detail.json')
api_key = os.getenv('API_KEY', '')
if not api_key:
raise RuntimeError('API_KEY is not set')
result = skill.invoke(
'Seedream 4.0',
{
'prompt': 'convert this landscape into a cyberpunk cityscape at night, neon lights, rain reflections, futuristic atmosphere',
'image': 'https://example.com/landscape.jpg',
'ratio': '16:9'
},
api_key=api_key
)
print(result)
import os
from scripts.skill_router import Skill
skill = Skill('scripts/c_api_doc_detail.json')
api_key = os.getenv('API_KEY', '')
if not api_key:
raise RuntimeError('API_KEY is not set')
result = skill.invoke(
'Nano Banana',
{
'prompt': 'reimagine this image as a watercolor painting, soft edges, pastel colors, artistic interpretation',
'image': 'https://example.com/original.jpg',
'strength': '0.7'
},
api_key=api_key
)
print(result)
import os
import time
from scripts.skill_router import Skill
skill = Skill('scripts/c_api_doc_detail.json')
api_key = os.getenv('API_KEY', '')
if not api_key:
raise RuntimeError('API_KEY is not set')
task_id = 'your-task-id'
for _ in range(24):
r = skill.invoke('Task Result', {'task_id': task_id}, api_key=api_key)
print(r)
status = (r.get('data') or {}).get('status')
if status in ('completed', 'failed', 'succeeded'):
break
time.sleep(5)
waiting: queuedprocessing: runningcompleted: completed successfullyfailed: failedtimeout: timed out| Model | Best For | Resolution | Speed |
|---|---|---|---|
| Seedream 4.0 | High quality, artistic | Up to 4K | Medium |
| Nano Banana Pro | Advanced reasoning, fusion | Up to 4K | Medium |
| Nano Banana | Fast transformations | Up to 4K | Fast |
| Media 2.0 | Diverse styles | Standard | Fast |
7w4.net小蔥技能。
| Error Code | Description |
|---|---|
374004 |
Not authenticated. Apply for an APP KEY at https://developer.media.io/ |
490505 |
Insufficient credits. Recharge before invoking generation APIs |
這是一個功能豐富的影像轉換 Skill,文件清晰易讀,示例程式碼充足,涵蓋了風格遷移、藝術濾鏡、創意轉換等多種場景。然而文件中的引數說明與實際 API 存在不一致,可能導致使用時的困惑。總體來說質量中等偏上,核心功能完善,但細節打磨還需加強。