بنقرة واحدة
remove-image-background
Remove backgrounds from existing images, producing transparent PNG files.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Remove backgrounds from existing images, producing transparent PNG files.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Anthropic AI integration via Replit AI Integrations proxy (JavaScript/TypeScript). Provides Anthropic-compatible API access without requiring your own API key.
Gemini AI integration via Replit AI Integrations proxy (JavaScript/TypeScript). Provides Gemini-compatible API access without requiring your own API key.
OpenAI AI integration via Replit AI Integrations proxy (JavaScript/TypeScript). Provides OpenAI-compatible API access without requiring your own API key.
OpenRouter AI integration via Replit AI Integrations proxy (JavaScript/TypeScript). Provides OpenRouter-compatible API access without requiring your own API key.
Apply a user's saved artifact template (a reusable slides/web style donor) when they ask to build or restyle an artifact "with my template", "using my saved template", "in my brand style", or refer to a template by name. Use this to discover the user's saved templates and materialize one for use.
Use when creating or updating the artifact.toml for artifacts such as websites, web apps, mobile apps, slide decks, pitch decks, videos, and data visualizations.
| name | remove-image-background |
| description | Remove backgrounds from existing images, producing transparent PNG files. |
TODO: The following callbacks referenced by this skill are not implemented in pkg/agent yet: removeImageBackground.
Remove the background from an existing image file in the project, producing a transparent PNG.
Remove the background from an existing image file.
Parameters:
imagePath (str, required): Path to the input image fileoutputPath (str, optional): Path to save the result PNG. Defaults to replacing the extension with _no_bg.pngReturns: Dict with outputPath key containing the path to the saved result
Example:
const result = await removeImageBackground({
imagePath: "attached_assets/photo.jpg",
outputPath: "attached_assets/photo_no_bg.png"
});
console.log(`Result saved to: ${result.outputPath}`);
.png extension since transparency requires PNG formatoutputPath to automatically save as <original_name>_no_bg.png_no_bg.png suffix.png