dLazy AIdLazy AI
Model ReferenceImage Models

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

FieldValue
Model IDvectorize
CLIdlazy vectorize
MCPvectorize (Claude Code surfaces this as mcp__dlazy__vectorize)
Typeimage
ExecutionReturns synchronously
BatchSupports --batch <n> parallel fan-out

Parameters

ArgTypeRequiredNotes
imageurlYesImage (URL); image (accepts URL, local path, or data: URL)

--input @file.json or --input '{...}' can supply all args at once; flags take precedence over --input keys.

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 4

Compose 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.

On this page