Edit existing images with text prompts using fal.ai Gemini 3 Pro. Use when the user wants to modify, edit, transform, or change an existing image based on a text description. Supports multiple input images for context.
Edit existing images using text prompts with Google's Gemini 3 Pro via fal.ai. Use when users want to modify, transform, or change images based on text descriptions. Supports multiple input images for context.
/plugin marketplace add bluewaves-creations/bluewaves-skills/plugin install fal-media@bluewaves-skillsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Edit and transform existing images using text prompts with Google's Gemini 3 Pro model via fal.ai.
FAL_KEY environment variable must be set (typically in ~/.zshrc)POST https://fal.run/fal-ai/gemini-3-pro-image-preview/edit
prompt (string): The editing instruction describing what changes to makeimage_urls (array of strings): URLs of the images to edit| Parameter | Type | Default | Options |
|---|---|---|---|
num_images | integer | 1 | 1-4 |
aspect_ratio | string | "auto" | "auto", "21:9", "16:9", "3:2", "4:3", "5:4", "1:1", "4:5", "3:4", "2:3", "9:16" |
output_format | string | "png" | "jpeg", "png", "webp" |
resolution | string | "1K" | "1K", "2K", "4K" |
sync_mode | boolean | false | Returns data URI when true |
enable_web_search | boolean | false | Uses current web data for generation |
limit_generations | boolean | false | Restricts to 1 image per prompt round |
curl --request POST \
--url https://fal.run/fal-ai/gemini-3-pro-image-preview/edit \
--header "Authorization: Key $FAL_KEY" \
--header "Content-Type: application/json" \
--data '{
"prompt": "Add snow to this mountain scene and make it winter",
"image_urls": ["https://example.com/mountain.jpg"],
"num_images": 1,
"output_format": "png"
}'
import fal_client
result = fal_client.subscribe(
"fal-ai/gemini-3-pro-image-preview/edit",
arguments={
"prompt": "Add snow to this mountain scene and make it winter",
"image_urls": ["https://example.com/mountain.jpg"],
"num_images": 1
}
)
# Access the edited image URL
edited_url = result["images"][0]["url"]
print(f"Edited image: {edited_url}")
import { fal } from "@fal-ai/client";
const result = await fal.subscribe("fal-ai/gemini-3-pro-image-preview/edit", {
input: {
prompt: "Add snow to this mountain scene and make it winter",
image_urls: ["https://example.com/mountain.jpg"],
num_images: 1
}
});
console.log("Edited image:", result.images[0].url);
{
"images": [
{
"file_name": "edited_image.png",
"content_type": "image/png",
"url": "https://storage.googleapis.com/..."
}
],
"description": "A description of the edited image"
}
Style transformation:
Object addition:
Scene modification:
Multiple reference images:
image_urls arrayauto aspect ratio preserves the original image proportions