Image Vectorizer — JPG & PNG to SVG avatar

Image Vectorizer — JPG & PNG to SVG

Pricing

from $45.00 / 1,000 vectorized images

Go to Apify Store
Image Vectorizer — JPG & PNG to SVG

Image Vectorizer — JPG & PNG to SVG

Turn any image, logo, or icon (PNG, JPG, GIF, BMP, WebP) into a clean, scalable SVG. Perfect for logos and icons. Get crisp vector paths and the color palette, ready to download.

Pricing

from $45.00 / 1,000 vectorized images

Rating

0.0

(0)

Developer

Veronica

Veronica

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 hours ago

Last modified

Share

Image Vectorizer — PNG & JPG to SVG

Turn any raster image into a clean, scalable SVG. Drop in a logo or icon and get crisp vector paths you can resize to any dimension without losing quality.

What you can do

  • Convert PNG, JPG, GIF, BMP, and WebP images to SVG.
  • Get razor-sharp logos and icons that scale to any size.
  • Receive a ready-to-download SVG file plus the full markup and color palette.
  • Process many images in one run.

How to use it

  1. Add one or more image URLs.
  2. Click Start.
  3. Download each result as an SVG file, or grab the data as JSON, CSV, or Excel.

What you get

One row per image, with a download link to the SVG, the SVG markup itself, the dimensions, and the color palette.

{
"imageUrl": "https://example.com/logo.png",
"svgUrl": "https://api.apify.com/v2/key-value-stores/ABC/records/001-logo.svg",
"svg": "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 240 240\" ...>...</svg>",
"width": 240,
"height": 240,
"colors": ["#ffffff", "#24292e"]
}

Real-time API

Need vectors on demand? Turn on Standby mode and call the actor like a live API — one image per request, instant SVG back. Send an image URL, or upload the image file directly.

Every request needs your Apify token, passed as a Bearer token (or a ?token= query param).

By URL — JSON response (default):

curl -X POST "https://vero-api--img-vectorizer.apify.actor/" \
-H "Authorization: Bearer <APIFY_TOKEN>" \
-H "Content-Type: application/json" \
-d '{"imageUrl": "https://example.com/logo.png"}'

By URL — raw SVG file (?format=svg):

curl -X POST "https://vero-api--img-vectorizer.apify.actor/?format=svg" \
-H "Authorization: Bearer <APIFY_TOKEN>" \
-H "Content-Type: application/json" \
-d '{"imageUrl": "https://example.com/logo.png"}' \
-o logo.svg

Upload the image file directly:

curl -X POST "https://vero-api--img-vectorizer.apify.actor/?format=svg" \
-H "Authorization: Bearer <APIFY_TOKEN>" \
-H "Content-Type: image/png" \
--data-binary @logo.png \
-o logo.svg

The default response is JSON with the SVG, palette, and dimensions. Add format=svg to get the raw SVG file — perfect for wiring straight into your app.

Pricing

You pay only for the images you vectorize — no subscriptions, no surprises.

FAQ

Which images work best? Logos, icons, and flat graphics give the cleanest, sharpest results.

What formats can I upload? PNG, JPG, GIF, BMP, and WebP.

Can I resize the SVG afterward? Yes — SVGs scale to any size with no loss of quality.