output
Glossary ↗SVG Generation
SVG generation produces vector graphics — icons, logos, illustrations, and diagrams described as XML paths and shapes — rather than a grid of pixels. Because the output is code, it scales to any size without blurring, stays tiny in file size, and can be edited, recolored, or animated after the fact. Two approaches exist: prompting a language model to write the SVG markup directly, or a raster-to-vector step that traces a generated bitmap into clean paths. For builders in design tools, presentation apps, and anything that ships crisp UI assets, vector output is often what customers actually need — a logo has to look sharp on a favicon and a billboard alike. Practical notes: LLM-written SVG is great for simple, geometric, or iconographic art but struggles with complex or photorealistic scenes; expect to validate and clean the markup. Watch path count and file size for very detailed art, and confirm the output renders identically across browsers before relying on it in production.
Related terms