The Windows Snipping Tool can rotate an image only while the screenshot is still open inside its built-in editor window; once you save the file and close it, the Snipping Tool itself cannot reopen and turn the image, so permanently rotating a saved screenshot requires a separate tool such as Image Rotator. Image Rotator runs entirely in the browser tab, accepts a JPG, PNG, or WebP file up to 25 MB, and lets you turn the image 90° left, 90° right, or 180° before downloading a full-resolution PNG. The decoding, canvas drawing, and PNG export all happen on your machine, so the file never leaves your computer. The output canvas is sized specifically for the angle you choose — quarter turns swap the width and height, while a half turn leaves them unchanged — so the downloaded PNG keeps the original pixel data intact instead of being squashed, cropped, or resized.

how to rotate image in snipping tool
How to Rotate an Image in Snipping Tool (or Locally)

What You Can and Can't Do Inside the Snipping Tool

The Snipping Tool on Windows 11 includes a small image editor that lets you draw, highlight, and crop a freshly captured screenshot. It also exposes Rotate clockwise and Rotate counterclockwise buttons, which apply a turn to the image currently held in the editor window. Those buttons only work while the screenshot is still open in the editor — once you click Save or Copy and the file is on your disk, the Snipping Tool has no Open-and-Rotate command for a standalone image. If you saved the screenshot as PNG, JPG, or another file, and you now want to turn it without re-capturing it, you need a different tool. The Snipping Tool also cannot batch-rotate, cannot rotate a file that came from somewhere else such as a phone photo dragged into a folder, and cannot save a rotated copy in a chosen output format without overwriting the original capture.

A Browser-Based Alternative for Any Screenshot

Image Rotator covers the gap for screenshots, phone photos, scanned pages, and design assets that the Snipping Tool will not reopen. The workflow is the same regardless of where the file originated: choose the image, pick a rotation, and download the PNG. Because everything happens inside the current browser tab, you can use it on any operating system that runs a modern browser, including older Windows builds where the Snipping Tool's editor was much more limited. The selected file is represented by a temporary local object URL only long enough for browser decoding, and that URL is released once the rotation finishes. The generated PNG receives its own temporary download URL, which is replaced and released when you rotate again, choose another file, or leave the page. For a fuller walkthrough of the standalone rotation workflow, the step-by-step guide to rotating an image left, right, or 180 degrees covers the same controls in more depth and shows how each option maps to the output dimensions.

How to Rotate a Snipping Tool Screenshot

  1. Open Image Rotator in your browser and click the file chooser. Select the JPG, PNG, or WebP screenshot you saved from the Snipping Tool — any file up to 25 MB on disk is accepted.
  2. Confirm the displayed pixel dimensions. The page reads your file through a temporary object URL and shows the decoded width × height so you know exactly what the source contains before any turn is applied.
  3. Pick the rotation. Click Rotate left 90° for a counterclockwise turn, Rotate right 90° for a clockwise turn, or Rotate 180° for a half turn. The orientation label and the new pixel dimensions update in the result panel so you can verify the geometry before downloading.
  4. Inspect the output dimensions in the result panel. The on-screen preview is visually constrained by CSS only; the PNG you save comes from the full output canvas at the rotated dimensions rather than from a reduced preview.
  5. Download the full-resolution PNG and open it in the app where you plan to use it (Word, PowerPoint, email, browser). Confirm the orientation, dimensions, transparency, and any edge content such as a cursor or toolbar that may now sit on a different side after the turn.

What Happens to the Pixel Dimensions After Rotation

A quarter turn and a half turn produce different output shapes. Width and height swap for 90° rotations because the former top edge becomes a side edge, while a 180° turn keeps the same dimensions because both axes reverse without exchanging places. The table below summarizes the relationship for the three rotation options.

RotationDirectionEffect on width × heightExample: 1200 × 800 source
Rotate left 90°CounterclockwiseWidth and height swap800 × 1200
Rotate right 90°ClockwiseWidth and height swap800 × 1200
Rotate 180°Half turnDimensions stay the same1200 × 800

Image Rotator plans the output canvas for the angle you pick before drawing the source into it, so the downloaded PNG is the full output size and not a reduced preview. The geometry is deterministic: a clockwise turn maps the source top edge onto the output right edge, a counterclockwise turn maps it onto the output left edge, and a half turn maps opposite corners to one another. The same rotation plan is used in production and in the tool's isolated tests, so the four corners of a non-square image always land where the plan says they should. The tool does not resize, crop, stretch, or silently lower the resolution — it draws the decoded source at its natural pixel dimensions into an output canvas planned specifically for the chosen angle.

File Limits, Formats, and What the Output Keeps

Before you choose a file, it helps to know the input and output boundaries. The accepted input formats are JPEG, PNG, and WebP. SVG is deliberately excluded because an SVG can refer to external content and is not simply a decoded bitmap, so rotating it safely requires a different code path. The compressed file size is capped at 25 MB, the decoded image at 40 megapixels, and neither side may exceed 20,000 pixels. Those are explicit safety limits: an unsupported, empty, oversized, over-budget, or unreadable file produces a clear message and no stale result remains on screen. Both compressed bytes and decoded pixel dimensions are checked because compressed size alone does not predict canvas memory.

PropertyInput (JPEG, PNG, WebP)Output (PNG)
File containerOriginal format preservedRe-encoded as PNG
CompressionLossy (JPEG/WebP) or lossless (PNG)Always lossless
Pixel dimensionsSource dimensionsSwapped for 90°, same for 180°
EXIF / camera orientation tagMay be presentNot preserved
AnimationMay be presentNot preserved (static)
Color profile / metadataMay be presentNot preserved

The output is a newly encoded static PNG containing the browser-decoded visual pixels. PNG is used because it gives the browser a consistent, lossless bitmap result after rotation. The PNG can be larger than the original JPEG or WebP even when the pixel dimensions are unchanged or swapped, which is normal: JPEG and many WebP files use lossy compression, while PNG preserves the canvas pixels losslessly. Rotation does not promise to preserve the original file container, EXIF metadata, camera orientation tag, color profile, animation, or embedded text fields. The browser draws the source at its natural pixel dimensions into a canvas that was planned for the chosen angle, applies the affine transform for that rotation, and exports the result as a PNG using HTMLCanvasElement.toBlob. Local processing can be a practical privacy advantage for ordinary photos, draft designs, scans, and screenshots, but you should still inspect the final file before sharing it.

When You Need a Different Kind of Edit

Rotation is one operation, and Image Rotator performs it well without bundling unrelated edits behind automatic choices. If the image is correctly oriented but you want it mirrored rather than turned, use Image Flipper. If the orientation is right but the pixel dimensions need to change, use Image Resizer. If you want to switch the file container — for example, save the rotated output as a smaller JPG or WebP — run the PNG through PNG to JPG or Webp Converter after downloading. If you want to remove EXIF or GPS data from the original first, EXIF Remover rebuilds a JPEG, PNG, or WebP from decoded pixels before you rotate it. Each tool is focused on a single edit, which makes the output behavior visible instead of guessing what changed behind the scenes.