ideogram-core-workflow-b

Featured

Execute Ideogram secondary workflows: edit (Magic Fill), remix, upscale, describe, and reframe. Use when modifying existing images, applying style transfer, upscaling, or building image-to-image pipelines. Trigger with phrases like "ideogram edit image", "ideogram remix", "ideogram upscale", "ideogram inpaint", "ideogram magic fill", "ideogram reframe".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Ideogram Core Workflow B -- Edit, Remix, Upscale, Describe, Reframe ## Overview Secondary workflows for Ideogram beyond text-to-image generation. Covers five endpoints: **Edit** (Magic Fill inpainting), **Remix** (style transfer with image weight), **Upscale** (enhance resolution), **Describe** (image-to-text), and **Reframe** (extend canvas to new aspect ratio). All image-input endpoints use multipart form data. ## Prerequisites - Completed `ideogram-install-auth` setup - Source images in JPEG, PNG, or WebP format (max 10MB each) - For editing: a black-and-white mask image matching source dimensions ## Instructions ### Step 1: Edit (Magic Fill / Inpainting) Replace specific regions of an image using a mask. Black regions in the mask indicate areas to regenerate. ```typescript import { readFileSync, writeFileSync, mkdirSync } from "fs"; async function editImage(imagePath: string, maskPath: string, prompt: string, options: { style_type?: string; rendering_speed?: string; magic_prompt?: string; } = {}) { const form = new FormData(); form.append("image", new Blob([readFileSync(imagePath)]), "image.png"); form.append("mask", new Blob([readFileSync(maskPath)]), "mask.png"); form.append("prompt", prompt); form.append("style_type", options.style_type ?? "GENERAL"); form.append("rendering_speed", options.rendering_speed ?? "DEFAULT"); form.append("magic_prompt", options.magic_prompt ?? "AUTO"); const response = await fetch("https://api.ideogram.ai/v1/id...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

ideogram-core-workflow-a

Execute Ideogram primary workflow: text-to-image generation with text rendering. Use when generating images from text prompts, creating designs with embedded text, or building the main image generation pipeline. Trigger with phrases like "ideogram generate image", "ideogram text to image", "create image with ideogram", "ideogram primary workflow".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-data-handling

Manage Ideogram generated image assets, metadata tracking, and lifecycle management. Use when implementing image persistence, tracking generation history, or building asset management for Ideogram outputs. Trigger with phrases like "ideogram data", "ideogram images", "ideogram asset management", "ideogram metadata", "ideogram image storage".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-reference-architecture

Implement Ideogram reference architecture with prompt templates, asset pipelines, and CDN delivery. Use when designing new Ideogram integrations, building brand asset systems, or establishing architecture for image generation at scale. Trigger with phrases like "ideogram architecture", "ideogram project structure", "ideogram brand assets", "ideogram pipeline design", "ideogram at scale".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-hello-world

Create a minimal working Ideogram image generation example. Use when starting a new Ideogram integration, testing your setup, or learning basic Ideogram API patterns. Trigger with phrases like "ideogram hello world", "ideogram example", "ideogram quick start", "simple ideogram code", "first ideogram image".

2,266 Updated today
jeremylongshore
AI & Automation Featured

ideogram-webhooks-events

Build event-driven workflows around Ideogram's synchronous API. Use when implementing async generation queues, batch processing, callback patterns, or image processing pipelines. Trigger with phrases like "ideogram webhook", "ideogram events", "ideogram async", "ideogram queue", "ideogram batch pipeline".

2,266 Updated today
jeremylongshore