PDF N-Up: Multiple Pages Per Sheet keeps every step of the job inside your own browser. When you open the tool, choose a file, and pick an arrangement, your machine loads the PDF, embeds the pages into a new document using a JavaScript PDF library, computes each placement, and serializes the download, and none of that work leaves your device. There is no upload to Lizely, no account requirement, no signup form, and no background roundtrip that hands your file to a third-party processor. The result is a new downloadable PDF whose output sheet dimensions come straight from the first page of your source document, which is an explicit rule rather than a hidden paper-size preset. This local-only design is the core reason the tool is safe for review sheets, handouts, compact archives, and any other layout where you would rather not hand your file to a remote service.

is pdf n-up: multiple pages per sheet safe to use online
is pdf n-up: multiple pages per sheet safe to use online

What "N-up" means and why local processing comes up at all

"N-up" is the print and PDF term for placing multiple source pages onto a single output sheet. The most common values are 2-up (two source pages per sheet, arranged as two columns by one row) and 4-up (four source pages per sheet, arranged as two columns by two rows). People reach for an N-up tool when they want to save paper, shrink a long document into a reviewable handout, fit reference material onto fewer pages, or create a compact archive copy.

The local-processing question matters because most public N-up features live inside desktop PDF readers, printer dialogs, or cloud services that ask you to upload. Cloud services in particular create a copy of your file on someone else's server, where it may sit in a queue, a temporary cache, or a deletion schedule before being purged. For routine handouts that may be fine. For draft contracts, internal reports, medical or financial records, or any document with personally identifying information, that upload step is a real privacy concern. The PDF N-Up: Multiple Pages Per Sheet tool is built around removing that concern entirely by keeping the file on your device.

How local browser processing keeps your file private

Local browser processing means the JavaScript code in your browser tab does the loading, embedding, and layout work without sending the file anywhere. The implementation embeds source pages through the existing PDF library using its embedPage API, then uses drawPage to place each embedded page into a target cell on the output sheet. Because that placement happens inside your tab, your document bytes never cross the network to a backend. The library treats each embedded source page as reusable PDF content rather than turning it into pixel data, which is what lets the tool preserve vector shapes and the underlying text layer instead of rasterizing the layout.

The tool also uses a few practical safeguards that come naturally from running locally. A job identifier prevents a slower earlier file read from overwriting a newer selection if you change files or arrangements. Stale results are revoked: changing the file or the chosen arrangement invalidates the old download URL, so a previously generated link will not keep working once you move on. Generation runs only when you press the button, and the control stays disabled while the operation is active so a double-click cannot create duplicate work. The tool saves the new PDF only after all selected source pages have been embedded and positioned, which means there is no half-written output to recover from if you close the tab. None of those behaviors require a server; they are simply properties of a well-behaved browser tool.

Equally important is what the tool does not do. It does not rasterize your pages into screenshots, it does not flatten form fields, it does not strip annotations, it does not reorder pages, and it does not rewrite or modify your original source file in any way. The original stays exactly where it is on your device; only a new downloadable copy is produced.

How to create a 2-up or 4-up PDF without uploading

  1. Open PDF N-Up: Multiple Pages Per Sheet in your browser. No login is required.
  2. Choose a non-empty PDF no larger than 25 MiB from your local files.
  3. Select two source pages per sheet or four source pages per sheet, depending on the layout you want.
  4. Select Create N-up PDF and wait for the operation to finish. The control stays disabled while it is running so a second click cannot duplicate the work.
  5. Check the reported source page count and output sheet count so you can confirm the arrangement before downloading.
  6. Download the new PDF. The filename will include the chosen arrangement, for example report-4-up.pdf.

If you change the file or the arrangement at any point, the previous result is invalidated and its download link is revoked. That means a stale link from an earlier arrangement will not silently keep serving the wrong output. Because everything happens locally, you can also close the tab once you have the downloaded file and trust that no copy is sitting on a remote server waiting to be purged.

Output sheet size, scaling, and reading order

The output sheet dimensions are taken from the first page of your source PDF. This is a deterministic rule rather than a hidden paper-size preset: whatever the first source page measures, every output sheet measures. That keeps the tool predictable when you mix letter-size content with A4 content or feed it odd-sized pages such as envelopes, receipts, or custom forms, because the geometry of the output follows the geometry of the input rather than a fixed paper assumption.

Each output sheet reserves an 18-point outer margin and a 12-point gap between cells. Two-up uses two columns and one row. Four-up uses two columns and two rows. The first source page becomes cell one (top-left), the second source page becomes cell two (top-right), the third becomes cell three (bottom-left), and the fourth becomes cell four (bottom-right), matching normal left-to-right, top-to-bottom reading order.

Each embedded source page is scaled proportionally to fit inside its cell. The tool compares the available width scale with the available height scale, uses the smaller value, and centers the result in both directions. Pages are never stretched to fill the cell. A tall source page keeps its aspect ratio with space at the sides, while a wide source page leaves space above and below. Mixed source page sizes are supported because the fit calculation is applied separately to every page. If the source count does not fill the final sheet, the remaining cells stay empty.

ArrangementGridCells filled per source pageReading order across cells
2-up2 columns × 1 row1 of 2Left, then right
4-up2 columns × 2 rows1 of 4Top-left, top-right, bottom-left, bottom-right

Source limits, error handling, and what the tool does not do

The tool accepts a single PDF that is non-empty, no larger than 25 MiB, and no longer than 500 pages. Those caps exist to keep browser work bounded and predictable; they are not a way to phone home. If you feed the tool an empty, mislabeled, encrypted, damaged, oversized, over-limit, or unsupported document, it surfaces a visible error rather than bypassing the problem or silently rewriting your file. That visible error is the same whether the document is empty, encrypted with a password, or simply past the page cap, so you always know the operation did not complete.

You should also know the boundaries of what N-up delivers. It is a focused layout tool, not a full document editor. It does not impose pages for duplex booklet signatures, add crop marks, rotate pages automatically, reorder source pages, print directly, remove annotations, flatten forms, or preserve interactive links as newly positioned clickable regions. It does not guarantee any specific commercial printer workflow, and it does not alter the original file. Use it when two-up or four-up placement on the first source page box is exactly the result you want.

A practical example: building a 4-up review handout

Imagine you have a 60-page PDF of internal meeting notes that you want to print as a compact review handout. Open the tool, select the source file, choose four source pages per sheet, and press Create N-up PDF. Because the first source page defines the output sheet size, the handout keeps the same paper dimensions as the original document. The 60 source pages flow into 15 output sheets, each holding four pages arranged as top-left, top-right, bottom-left, bottom-right. Tall slides that were originally portrait fit centered with space on the sides; wide landscape slides fit centered with space above and below, because the smaller fit factor is used for every page. The result reports the source page count (60), the output sheet count (15), and an approximate encoded size so you can sanity-check the file before downloading it as notes-4-up.pdf.

Now imagine the same document has a single odd landscape receipt on page 47. The fit calculation runs per page, so the surrounding portrait pages keep their own aspect ratio and the landscape receipt simply leaves space above and below inside its cell. No page is stretched, and reading order is still left to right, top to bottom, with empty cells only appearing on the very last sheet if the source count is not a multiple of four.

When to use PDF N-Up and when to reach for a different tool

PDF N-Up is the right choice when you want a quick, local, no-upload way to compress several source pages onto fewer output sheets for review, handouts, or paper-saving layouts. It is the wrong choice if you need duplex imposition, a stitched booklet signature, rotated pages, or a printer-specific paper preset, since those jobs belong to other tools.

If your real problem is splitting rather than combining, the Split PDF tool will break one PDF into several smaller files in your browser. If you want to rearrange pages before you N-up them, Rearrange PDF Pages can rebuild the order locally. If you need to count pages or check page sizes before deciding on an arrangement, the PDF Page Counter gives you a local read of the page count and exact page-box dimensions. Each of those runs locally, which keeps the same privacy posture you came to N-up for.

For most everyday layouts, the rule is simple: if you want two or four source pages on each sheet, you do not need to hand your file to anyone. Open the tool, pick your arrangement, and download a new PDF that was assembled on your own machine, with the original still sitting untouched in the folder you picked it from.