An SVG editor lets you draw and edit vector graphics — shapes, paths, text, gradients — and save them as Scalable Vector Graphics files that stay sharp at any size. This page runs the real SVG-Edit editor (the MIT-licensed open-source project, served unmodified from its official CDN release): open or create an .svg file, draw with the toolbar, edit the XML source directly, and export SVG, PNG, or PDF. Everything happens locally — your files are opened from and saved to your machine, with no upload. For a feel of the format, a 200×100 badge is four lines of SVG: <rect width="200" height="100" rx="12"/>, a circle at cx=160 cy=60 r=20 (spanning x 140–180, y 40–80 — inside the canvas), and a text label.

Editor

Loading SVG-Edit 7.4.2 (about 2.7 MB, one time)…
Engine: SVG-Edit 7.4.2, MIT license, bundled jsPDF SVG-to-PDF plugin under LGPL-3.0-or-later — the official unmodified build, loaded from jsDelivr. Your drawings stay on your machine.
Advertisement

SVG Elements Quick Reference

ElementDrawsKey attributes
<rect>Rectangle / rounded boxx, y, width, height, rx (corner radius)
<circle>Circlecx, cy (center), r (radius)
<ellipse>Ovalcx, cy, rx, ry
<line>Straight linex1, y1, x2, y2
<polyline>Connected strokespoints="x,y x,y …"
<polygon>Closed shapepoints (last point auto-joins the first)
<path>Anything: curves, arcs, freeformd (M moveto, L lineto, C/Q curves, Z close)
<text>Textx, y (baseline), font-size, font-family
<g>Group (moves/transforms children together)transform (translate, rotate, scale)
<use>Reuse a defined shapehref="#id" pointing at a <defs> element

Every element also takes fill, stroke, stroke-width, opacity, and id. The editor's source panel is the fastest way to learn these — draw a shape, then look at the XML it produced.

Which SVG Tool Fits the Job

ToolTypeLicense / costBest for
This page (SVG-Edit)Browser, no installMIT, freeQuick edits, icons, learning SVG source
InkscapeDesktop appGPL, freeHeavy illustration, print layouts, tracing
Method DrawBrowserFreeMinimal UI — but development went quiet years ago
Boxy SVGDesktop / webCommercialPolished desktop-style editing on a Chromebook
Figma / IllustratorDesign suitesCommercialMulti-file product design; SVG is an export, not the working format

How to Use the Editor

SVG-Edit works like any drawing app, with one superpower: the SVG source is always one click away. The toolbar on the left holds the drawing tools — select, square/rectangle, circle/ellipse, line, path, polygon, text, and zoom. The top bar carries layers, alignment, and the source panel. Open an existing file with the folder icon, save with the disk icon, and export to PNG or PDF from the export menu.

Step by step

A worked example

Paste this into the editor's source panel and you have a 200×100 badge — the four elements described in the intro in real coordinates:

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100">
  <rect width="200" height="100" rx="12" fill="#2563eb"/>
  <circle cx="160" cy="60" r="20" fill="#fbbf24"/>
  <text x="20" y="45" font-size="20" font-weight="bold" fill="#ffffff">BETA</text>
</svg>

The math checks out on sight: the canvas is 200 wide and 100 tall; the circle centered at (160, 60) with radius 20 spans x 140–180 and y 40–80, so it clears the right edge (180 < 200) and the bottom edge (80 < 100); the text baseline sits at y=45, comfortably inside the rounded rect. Change cx to 190 and the circle's right edge (210) would clip past the canvas — the kind of arithmetic the source view makes obvious and the visual canvas makes instant.

Frequently Asked Questions

Can I edit an SVG file without installing software?

Yes. This page runs the open-source SVG-Edit engine directly in your browser: open your .svg file, edit with the toolbar or the source view, and save back to your machine. Nothing is uploaded and there is nothing to install.

What can this SVG editor do?

Draw rectangles, ellipses, lines, polygons, freehand paths, and text; select and move anything; group and align elements; work in layers; edit gradients, strokes, and fills; hand-edit the XML source of the drawing; and export to SVG, PNG, or PDF. It is the same editor the SVG-Edit project ships, unmodified.

Is SVG still worth editing in 2026?

Very much so. SVG is the native format for icons and logos on the web, it scales to any resolution with tiny file sizes, and cutting machines and plotters take SVG directly. If a graphic needs to look sharp at every size, it is an SVG job.

What export formats does the editor support?

SVG natively, PNG at your choice of size, and PDF through the bundled jsPDF SVG-to-PDF plugin that ships with SVG-Edit. For crisp icons and logos, export SVG — raster formats defeat the point of vectors unless a target app only accepts images.

Is my artwork private?

Yes. The editor loads from a CDN but your drawing and files never leave your machine: open, edit, and save happen locally in the browser, with no server round-trip for your work.

What license is this editor under?

SVG-Edit is MIT-licensed, with one bundled dependency (the jsPDF SVG-to-PDF plugin) under LGPL-3.0-or-later. This page serves the official, unmodified release from the jsDelivr CDN, which keeps both licenses intact.

Advertisement