How to open an SVG file
SVG is a text format describing shapes, so almost everything can display one and almost nothing can edit one. Which of those you need decides the answer.
If you just want to look at it
Drag the .svg onto any browser window — Chrome, Safari, Firefox and Edge all render SVG natively. That is the fastest way to see what a file contains, and it needs nothing installed.
On Windows, double-clicking an SVG often opens Paint or the Photos app, which will show it but cannot meaningfully edit it. On macOS, Preview and Quick Look display it fine. Neither gives you the paths.
If you want to change it
Then you need something that reads the SVG into editable shapes. Dadaki does that in a browser tab: press ⌘O (Ctrl+O) or drag the file in, and every path, gradient and text run becomes something you can select and change.
Open the editorNo sign-up, no download. It opens on a blank canvas.
What opens an SVG, and what it gets you
| Tool | View | Edit shapes | Cost |
|---|---|---|---|
| Any web browser | Yes | No | Free |
| Dadaki | Yes | Yes | Free, open source |
| Inkscape | Yes | Yes | Free, open source, desktop install |
| Adobe Illustrator | Yes | Yes | Subscription |
| Figma | Yes | Yes, after import conversion | Free tier, account required |
| A text editor | Raw XML | By hand | Free |
| Windows Photos / macOS Preview | Yes | No | Built in |
Why the file might look wrong when it opens
- It looks blank. The artwork may sit outside the viewBox, or every shape may be white on a white background. Opening it in an editor and fitting the view to the artwork (⇧1) finds it.
- The fonts are wrong. SVG references fonts by name and does not embed them by default, so text falls back to whatever the machine has. Converting text to outlines before sharing avoids it.
- It opens as code. Your OS has associated .svg with a text editor. That is not corruption — SVG genuinely is text. Open it with a browser or an editor instead.
- Nothing happens on double-click. Some systems block SVG for security reasons, because SVG can contain scripts. Opening it inside an editor sidesteps that.
That last point is worth taking seriously: an SVG from an untrusted source can carry JavaScript. Dadaki parses the geometry rather than executing the document, so importing one does not run what is inside it.
Open the editorNo sign-up, no download. It opens on a blank canvas.
Questions
What program opens an SVG file?
Any modern web browser will display one. To edit it you need a vector graphics editor — Dadaki in the browser, Inkscape on the desktop, or Adobe Illustrator if you have a subscription.
How do I open an SVG on Windows without Illustrator?
Drag it into Chrome or Edge to view it. To edit it, open dadaki.com and press Ctrl+O — nothing to install, and it runs the same on Windows as anywhere else.
Why does my SVG open in Notepad or a text editor?
Because SVG is a text format and the file association points at a text editor. The file is fine. Right-click, choose Open with, and pick a browser or a vector editor instead.
Can I convert an SVG to PNG or JPG?
Yes. Open it in Dadaki and export as PNG at 1× to 4× scale. SVG is resolution-independent, so you choose the pixel size at export time.