Skip to content
Initurn

Rotate an image

Files never leave your device. All processing happens in your browser.

Right angles only, so no pixels are resampled and nothing softens.

Rotated has no transparency, so see-through areas are filled with this colour.

How to convert Image to Rotated

  1. 1

    Drop in the photos that came out sideways.

  2. 2

    Choose 90° clockwise, 180°, or 90° anticlockwise.

  3. 3

    Download them the right way up, permanently.

The usual reason to need this is a photo that looks correct on your phone and sideways everywhere else. That is not a fault in the image — it is a disagreement about metadata, and understanding it explains why rotating properly matters.

The EXIF orientation problem

Phone cameras do not rotate the image when you turn the phone. They save the pixels exactly as the sensor read them and add a small metadata note saying which way up it should be displayed. Photo apps and modern browsers read that note and rotate on the fly. Plenty of other software — older desktop programs, some upload processors, certain printing services — ignores it entirely and shows you the raw sideways pixels.

This tool settles the argument. It decodes the image with the orientation flag applied, rotates the actual pixels, and writes out a file that is genuinely the right way up. No metadata note is involved in the result, so nothing downstream can disagree about it.

Why only right angles

Rotating by 90, 180 or 270 degrees moves every pixel to a new position on the grid without needing to invent any new ones. The result is mathematically identical to the original, just arranged differently — nothing softens, nothing blurs, no quality is lost at all.

Rotating by an arbitrary angle is a different operation entirely. Every pixel lands between grid positions, so each one has to be interpolated from its neighbours, which softens the whole image. It also leaves empty triangles at the corners that must be filled or cropped away. That is a straightening tool rather than a rotation tool, and it belongs on its own page with its own controls.

  • 90° clockwise — for a photo lying on its left side.
  • 90° anticlockwise — for a photo lying on its right side.
  • 180° — for a photo that is completely upside down, common with scanned pages fed in the wrong way.

Dimensions swap on a quarter turn

A 4000×3000 landscape rotated by 90° becomes a 3000×4000 portrait. That is unavoidable and correct, but worth knowing if something downstream expects specific dimensions — rotate first, then resize, not the other way round.

The output is PNG, so the rotation costs nothing in quality even if the source was a JPEG. Rotating a JPEG and re-saving it as a JPEG would re-compress the whole image for no reason. If you need a JPG at the end, compress afterwards. Everything runs in this tab with nothing uploaded.

Questions about Image to Rotated

Why does my photo look right on my phone but sideways on my computer?

The phone saved the pixels sideways with a metadata note about which way up to display them. Software that reads the note shows it correctly; software that ignores it shows the raw sideways pixels. Rotating here fixes the pixels themselves so nothing can disagree.

Does rotating lose any quality?

Not at right angles. Every pixel moves to a new grid position without being recalculated, so the result is mathematically identical to the original. The output is also PNG, so no compression is applied.

Can I rotate by an arbitrary angle, like 5 degrees?

Not with this tool. Arbitrary angles require interpolating every pixel, which softens the image, and leave empty corners that must be filled or cropped. That is a straightening operation and needs different controls.

Why did my image dimensions change?

A quarter turn swaps width and height — a 4000×3000 landscape becomes 3000×4000. If something downstream needs specific dimensions, rotate first and resize afterwards.

Can I rotate several photos at once?

Yes. Drop in a batch and the same rotation is applied to each, which suits a set of photos taken in the same orientation. Photos needing different rotations have to be done in separate passes.

Will the EXIF data be kept?

No, it is removed, along with the orientation flag that caused the problem. That is deliberate — leaving a stale flag on an already-rotated image is exactly how photos end up sideways twice over.