SVG Sample Files
SVG (Scalable Vector Graphics) is an XML-based vector image format. Unlike raster formats (JPG, PNG), SVG images can be scaled to any size without losing quality. They are perfect for icons, logos, charts, and illustrations on the web.
Back to Example image filesDownload SVG Sample Files
| File | File type | File size | Dimensions (pixels) | Mime type | Download example file |
|---|---|---|---|---|---|
| SVG Sample - Shapes | SVG | 1 KB | 400 x 300 | image/svg+xml | Download example file |
| SVG Sample - Text | SVG | 1 KB | 400 x 200 | image/svg+xml | Download example file |
| SVG Sample - Bar Chart | SVG | 3 KB | 500 x 300 | image/svg+xml | Download example file |
| SVG Sample - Logo | SVG | 1 KB | 200 x 200 | image/svg+xml | Download example file |
About SVG files
SVG files are plain text XML. You can open them in a text editor and read the markup directly. The format supports shapes (circles, rectangles, paths), text, gradients, filters, and animations. Because SVGs are text-based, they compress well with gzip and can be styled with CSS.
SVGs are resolution-independent, so a single file looks sharp on a phone screen and a 4K monitor. This makes them the standard choice for logos, icons, and UI elements. They can also be embedded inline in HTML, which avoids extra HTTP requests.
For raster images at specific sizes, see our PNG samples or WebP samples.