Rotate specific pages in your PDF without rotating the whole document.
Every page in a PDF is defined by a dictionary object. This dictionary contains an attribute called /Rotate, which can hold values like 90, 180, or 270.
When you rotate a page, the underlying text and vectors remain completely untouched. We simply update the /Rotate integer flag in that specific page's dictionary.
Because the tool only needs to flip an integer value inside the document's structure rather than decoding graphics data, rotation is incredibly lightweight.
Rotating a single page inside a massive 1,000-page book takes only milliseconds, and because it runs natively in your browser using WebAssembly, it requires no internet connection.
What actually happens to the image data when you rotate a PDF page?