SVG
Scalable Vector GraphicsUsed for resolution-independent illustrations.
- Family
- Vectors
- MIME
- image/svg+xml
Convert SVG to BMP online and see exactly what rasterization at a fixed canvas changes, what BMP still can't promise, and how to verify the result.
Rasterizing SVG fixes every path and shape onto one pixel grid before that canvas is encoded as BMP. Once that happens, scaling the derivative back up cannot recover the original curves. SVG import parses XML into a styled graphics tree of paths, text, viewBox coordinates, transforms, clipping, filters, links, and external resources. BMP output writes a single flat pixel surface with an explicit row order and color depth, built for simple bitmap interchange rather than layers or multiple resolutions.
Source material - XML vector artwork made from paths, shapes, paint, text, and optional embedded assets. Rendered deliverable - A plainly structured bitmap with minimal compression that most software can read.
Used for resolution-independent illustrations.
Designed for pixel-based artwork, scans, and photographs.
Use BMP when the destination needs pixels; keep SVG for logos, diagrams, or print work that must remain resolution independent.
Zoom far in and inspect path smoothness, text, viewBox, clipping, and external references.
Check the dimensions, color depth, and orientation, and confirm whether the app you're using actually reads BMP transparency.
Tracing a bitmap produces approximate paths rather than restoring original geometry; fonts and filters may render differently.
A BMP derivative is typically far larger than a web-oriented image, and row order or alpha handling can differ between the apps that read it.
a plainly structured bitmap with minimal compression that most software can read is what gets written, labeled as image/bmp. Whether that actually opens depends on the receiving application, not on the file extension.