1Upload the SVG files that came out the wrong way round.
2Pick a quarter turn or a half turn, or type an arbitrary angle and choose a colour for the corners it will expose.
3Apply the rotation; the pixels and the orientation flag are reconciled so every viewer agrees on which way is up.
4Download the rotated SVG file.
Rotate SVG FAQ
How does Rotate SVG turn the file?
+
Concretely, a transform is applied to the geometry and the viewBox is recomputed, so the rotated artwork stays vector and stays editable — there is no resampling anywhere in the path. Quarter turns and half turns are the common case and take the cheapest path available for the format.
Can I rotate by an arbitrary angle, not just 90 degrees?
+
Yes, though the two are different operations underneath. A multiple of 90 degrees rearranges existing data; any other angle has to rebuild the grid and fill the corners, so it costs a resample and usually wants a background colour choosing.
Does the format decide whether rotation is lossless?
+
It does. SVG is XML geometry rather than pixels, so it scales to any size without blurring but has no pixel grid to sample from. That property is exactly what determines whether a quarter turn is free or costs a re-encode.
Anything specific to SVG I should know?
+
Yes — nothing is sampled: the file is edited as text, so the result is still infinitely scalable and still diffable in version control. It is the kind of thing that explains why a file looks right in one application and wrong in another.
Why does my file look correct on my phone but sideways elsewhere?
+
Because the orientation is stored as an EXIF flag rather than in the pixels, and not every viewer honours it. Rotating here normalises the two — the pixels and the flag end up agreeing, so the file looks the same everywhere.
Can I rotate a whole batch in one go?
+
Yes. The same rotation is applied across every file you upload, which is the practical fix for a folder of scans or camera output that all came in the wrong way round.
What can I upload to Rotate SVG?
+
SVG files, including ones exported from Illustrator, Figma, Inkscape or a charting library. Embedded raster images inside the SVG are carried through as-is.
Is there a file size limit on Rotate SVG?
+
Yes: free accounts process images up to 25 MB each, which an SVG essentially never approaches — a complex illustration is usually a few hundred kilobytes of text. In practice the thing that makes an SVG heavy is thousands of path nodes from an auto-trace, not the file size, and that is a different problem from the cap.
Will Rotate SVG lower the quality of my SVG files?
+
No, and it cannot: an SVG has no pixel grid to degrade. The geometry is transformed mathematically, so the result is still crisp at any zoom level and still openable in a vector editor.
Can I run Rotate SVG on several SVG files at once?
+
Yes. SVGs are small and parse quickly, so a batch of icons or logos finishes almost as fast as a single file. Settings apply uniformly across the set.
Will my SVG still be editable afterwards?
+
Yes. The output is still valid SVG markup — named layers, grouping and IDs survive — so you can reopen it in Inkscape or Illustrator and keep working. It also still diffs cleanly in version control.
Does Rotate SVG cost anything?
+
No. Rotate SVG is free with no account and no watermark. Because SVG is text, nothing about your artwork is retained after the job — the uploaded file is deleted with everything else.