AI Image Editor quickstart
AI image generation and editing for Uploadcare. The package gives you a
framework-agnostic <uc-ai-image-editor> web component, plus an optional plugin
that adds an AI Edit action and a Generate image source to the
File Uploader.
Want to see it first? Head to the live demo.
Install
npm
pnpm
yarn
bun
You’ll also need an Uploadcare public key to enable generate/edit. Grab one from the Uploadcare dashboard; see API keys.
AI Image Editor is in public beta and available on all paid Uploadcare
plans. On a free project, generation and edit requests fail with the
derivative_disabled error.
The package has three entry points, imported independently so you only pull in what you use:
The plugin entry needs @uploadcare/file-uploader ≥ 1.31.2 as a peer
dependency (it relies on uploaderApi.replaceFile). The standalone editor has
no peer dependency.
The standalone editor
Importing the package registers the element. Configure it via
attributes/properties and listen for uc:* events.
Options covers every configuration option. The
API reference
has the full list of attributes, properties, events, and CSS custom
properties, and Error handling explains what
uc:error carries.
Edit an existing image
Set sourceUuid to an Uploadcare UUID to open the editor in edit mode
instead of generating from scratch:
The editor resolves the image and frames the canvas to its real aspect ratio.
If you already hold the file as an UploadcareFile (returned by
@uploadcare/upload-client, or the fileInfo of a
File Uploader output entry), pass it as sourceFileInfo instead to skip the
lookup. Use one or the other, not both. The first successful generation
also flips a from-scratch session into edit mode, so you can chain edits.
Where to next
- File Uploader plugin: drop it into the uploader.
- Integrating into your app: Vue, Angular, Svelte, CDN, SSR.
- Theming · Localization
- Live demo: try the editor and its layout options.