Design
QR code grids and sheets
When printing many QR codes on one sheet, give every cell its own quiet zone of at least 4 modules so the cutting knife can wander through the gutter without shaving readable margin. Generate the codes in bulk, lay them out to the label geometry, and decode a sample from the printed sheet.
The rule that survives the knife
Sheets get cut, and cutters drift — a millimetre or two of wander is normal for a guillotine, and even die-cut label sheets tolerance their registration. The design rule that absorbs all of it: every cell carries its own quiet zone, at least 4 modules on each side, inside the cell boundary. Then any cut that lands in the gutter — even a crooked one — leaves each code's readable margin intact.
The anti-pattern is one big grid of codes sharing white space, on the logic that the space between codes "counts" for both neighbours. It does — until the knife divides it unevenly and one sticker in three has a quiet zone on the wrong side of the minimum.
Gutter maths, worked
Take a 25 mm square label carrying a version 2 URL code (25 modules). With the 4-module quiet zone on each side the cell spans 33 module-widths:
- module size = 25 mm ÷ 33 ≈ 0.76 mm — comfortably above the 0.5 mm print floor, and a clean 9 dots per module at 300 DPI
- code proper = 19 mm, quiet zone = 3 mm per side
- a cutter drifting ±1 mm consumes a third of the quiet zone and leaves the code legal
For guillotine-cut sheets (as opposed to pre-die-cut stock), add a further ≥ 2 mm gutter between cells beyond the quiet zones, so the blade has territory that belongs to no code. Print crop marks in the gutters, never touching any cell.
Production, not design
Sheets are a manufacturing workflow, and the tooling matters more than the aesthetics:
- Generate in bulk from a CSV with the bulk generator, or programmatically
via
POST /api/v1/qr/batch(up to 1,000 items per call) — the workflow is written up in making QR codes in bulk. - Lay out to the label geometry with the sticker sheet tool, or follow the label-sheet walkthrough; Avery-style die-cut stock has its own template guide in Avery labels with QR codes.
- Keep the master vector. Cutting services and print shops want scale-independent artwork — the reasons are in printing from SVG.
Verify like a manufacturer
Sheets usually mean serialised payloads — asset tags, ticket codes, per-unit URLs — so a single spot check proves nothing about the rest. The discipline:
- Before printing, decode a sample of the generated artwork — the
validator for single files,
POST /api/v1/decodein a loop for batches. - After printing, scan at least the four corner cells and the centre cell of the first sheet with a phone. Corners betray feed skew and edge fade first.
- Confirm the payloads, not just "it scanned" — a mis-sorted CSV produces perfectly scannable stickers pointing at the wrong things.
The wider pre-press routine lives in the print checklist.
FAQ
How much space do QR codes need between them on a sheet?
Each cell needs its own four-module quiet zone inside its boundary, plus at least 2 mm of true gutter between cells on sheets that will be cut by blade. Shared margins between neighbouring codes do not survive an off-centre cut.
What size QR code fits a 25 mm label?
A version 2 code (25 modules) with full quiet zones gives 0.76 mm modules — a 19 mm code with 3 mm margins, comfortably above the 0.5 mm module floor. Longer payloads push the version up and shrink modules, so shorten URLs before generating.
How do I generate hundreds of QR codes at once?
From a spreadsheet: one payload per row, through a bulk generator or the batch API (up to 1,000 codes per call), then into a layout tool that knows your label geometry. Keep the output as SVG so any print size stays sharp.
How many codes should I test on a printed sheet?
At minimum the four corners and the centre of the first sheet, checking decoded payloads against the source data. Corner cells fail first under feed skew, and payload checks catch sorting errors that scan tests cannot.
Try it — free, no signup
Related
- QR code design best practices — seven rules ranked — The seven design rules that decide whether a styled QR code scans, ranked by how often breaking them kills codes, with the number behind each rule.
- Multiple QR codes on one page — Camera apps latch onto one code at a time. Spacing of at least twice the quiet zone, a label on every code, and when to collapse the lot into one hub.
- How to make a sheet of QR code labels — Use the free sticker sheet tool for identical or numbered codes on Avery stock or an A4 grid PDF, or the bulk tool for one code per spreadsheet row.
- Pre-press checklist for QR codes — Eight checks before any print run: scan a physical proof from the real distance, verify size against the ten-to-one rule, confirm the four-module quiet…