viewBox.SVG is vector — it has no fixed pixel resolution. If you convert at a small size and then scale the result up in another app it will appear blurry. Use the 2× or 4× scale preset, or manually enter a larger width, to get a crisp output at the size you need.
The tool reads the viewBox attribute to calculate the natural aspect ratio and defaults to 800 px wide. You can override both dimensions before converting.
Yes — WebP and PNG both support alpha transparency. Transparent areas in your SVG remain transparent in the output. When converting to JPG (which has no alpha), use the background colour picker to choose what colour fills those areas.
WebP is the best choice for web use — smaller files than PNG with optional transparency. PNG is lossless and ideal for icons, logos, and graphics that need pixel-perfect edges. JPG suits photographs or when you need maximum compatibility with older software.
Not always. The browser Canvas cannot load resources from external URLs when rendering an SVG via a Blob. Inline all fonts as <style> with base64-encoded @font-face, and embed any bitmap images as base64 data URIs for the most reliable conversion.
There is no server-side limit because nothing is uploaded — processing happens entirely in your browser. Very large SVGs with complex paths may be slow to render depending on your device. The practical canvas limit is around 16 000 × 16 000 px in most browsers.