vectorize
Image-to-SVG tool: converts raster images (PNG/JPG) into color vector SVG and returns the URL, suitable for lossless scaling and vectorization of logos, icons, and flat illustrations.
Image-to-SVG tool: converts raster images (PNG/JPG) into color vector SVG and returns the URL, suitable for lossless scaling and vectorization of logos, icons, and flat illustrations.
Overview
| Field | Value |
|---|---|
| Model ID | vectorize |
| CLI | dlazy vectorize |
| MCP | vectorize (Claude Code surfaces this as mcp__dlazy__vectorize) |
| Type | image |
| Execution | Returns synchronously |
| Batch | Supports --batch <n> parallel fan-out |
Parameters
| Arg | Type | Required | Notes |
|---|---|---|---|
image | url | Yes | Image (URL); image (accepts URL, local path, or data: URL) |
--input @file.jsonor--input '{...}'can supply all args at once; flags take precedence over--inputkeys.
CLI Examples
dlazy vectorize --help
dlazy vectorize --image "https://example.com/reference.jpg"
dlazy vectorize --image "./local-image.png"
dlazy vectorize --image "https://example.com/reference.jpg" --dry-run
dlazy vectorize --image "https://example.com/reference.jpg" --batch 4Compose with a pipeline
dlazy gpt-image-2 --prompt "reference visual" \
| dlazy vectorize --image -MCP
MCP is consumed by AI clients, not handwritten. Once dLazy is registered as an MCP server the tool appears in the client's tool list — Claude Code surfaces it as mcp__dlazy__vectorize; generic clients (e.g. OpenClaw) call it as vectorize.
See MCP setup for how to add the server.
Output
{
"outputs": [
{ "type": "image", "id": "o_...", "url": "https://files.dlazy.com/result.png", "mimeType": "image/png" }
]
}Media tools emit image / video / audio / file outputs. Use --output url to print only the URLs on stdout.
superres
Image super-resolution tool: enhances image clarity and details, returning enhanced URL, suitable for low-res asset restoration and upscaling.
video-frame
Video frame extraction tool: captures a single frame from the video by mode (first, last, or a given time) and returns the uploaded image URL.