ForHosting KIT · Documents & PDF

Leaflet panels from folds calculator

This leaflet panels calculator converts a familiar fold name into the number of content areas available on one sheet.

● BetaFree · in your browser
Use it from WebAPIEmailTelegramApp soon

Choose a bi-fold, tri-fold, gate fold, accordion fold, double parallel fold, or quarter fold, then specify whether one or both sides will be printed. The result separates panels per side from total usable panels, making it easier to plan copy, images, covers, calls to action, and production handoffs without confusing folds with finished content areas.

Count panels, not merely fold lines

A fold line and a panel are related, but they are not the same quantity. One straight fold across an otherwise uncut sheet creates two physical sections, so a bi-fold has two panels on each side. Two parallel folds normally create three sections, which is why a conventional tri-fold and a Z-fold each have three panels per side even though they open differently. The calculator maps the selected production name to its physical section count before considering printing. This distinction prevents a common planning error: treating two folds as two spaces when those folds actually divide the sheet into three spaces. The reported folds value describes the folding operations represented by the pattern, while panels per side describes the sections visible on either face of the flat sheet. Use panels per side when preparing a dieline, checking a designer’s artboard structure, or deciding how many discrete blocks the flat layout must contain. It is the most direct physical count before front and back printing are considered.

Turn physical sections into usable content panels

A physical section exists on both faces of the sheet, but it becomes a usable content panel only when that face is included in the print plan. The printed sides setting therefore changes the total without changing the fold geometry. A two-panel bi-fold printed on one side provides two usable panels; printed on both sides, it provides four. Likewise, a three-panel tri-fold provides three or six usable panels. The calculator multiplies panels per side by either one or two and reports that product as usable panels. This definition is intentionally practical: it counts printable content areas, not the number of views visible at one moment after folding. Some finished leaflets conceal panels inside the fold or reveal several panels together, but those areas still need artwork and remain usable in the production file. If a panel must stay blank for mailing marks, glue, a pocket, or another finishing constraint, subtract that reserved area from the reported total during editorial planning; the fold itself still created the physical panel.

Choose the fold pattern that matches production

Select the name specified by the printer or finishing brief, because patterns with the same panel count can behave differently. A tri-fold and Z-fold both divide a sheet into three sections, yet a tri-fold rolls one outer panel inward while a Z-fold alternates directions. A gate fold also has three sections, but its outer sections close toward the center and may require unequal widths. Four-panel accordion, double gate, double parallel, and quarter folds all yield four sections per side in this calculator, although their crease directions, nesting, and reader sequence differ. The output includes a short layout description to make the selected interpretation explicit. The calculation does not determine dimensions, fold allowances, creep, safe zones, paper grain, or whether every panel should have equal width. Those choices depend on stock, machinery, and the printer’s template. Use the result to establish the number of content areas, then obtain the final dieline and tolerances from the production supplier before placing critical text or aligning artwork across a crease.

Plan brochure content

Determine how many distinct areas are available for a cover, introduction, product details, contact information, and calls to action.

Check a design brief

Compare the requested fold pattern and print sides with the number of artboard sections expected in the supplied layout.

Estimate editorial capacity

Give writers and stakeholders a clear panel count before copy is assigned or a printer-specific dieline is available.

How much does the calculation cost?

The API base price is $0.002 per calculation, and the same deterministic calculation can run in the browser.

How many panels does a bi-fold leaflet have?

A bi-fold has two panels per side: two usable panels when printed on one side or four when printed on both sides.

How many panels does a tri-fold leaflet have?

A tri-fold has three panels per side, giving three usable panels for one-sided printing or six for two-sided printing.

Why do a tri-fold and Z-fold return the same panel count?

Both patterns divide the sheet into three physical sections. Their folding directions and reading sequences differ, but their number of printable sections is the same.

Does the calculator include fold allowances or panel dimensions?

No. It counts sections and usable printed faces only. Obtain dimensions, allowances, safe zones, and tolerances from the printer’s dieline.

Should a deliberately blank panel be counted?

The calculator counts it as a physical usable panel. Subtract reserved or deliberately blank areas separately when planning actual content.

Everything on this page is available programmatically. This section is for teams who want to wire it into their own systems; everyone else can just use the tool above.

POSThttps://api.kit.forhosting.com/pdf/leaflet-folds

Prefer to automate it? One authenticated POST creates the task; the result comes back by webhook or a signed link. The same capability also runs here on the web, by email and from Telegram — and soon from our app too.

curl -X POST https://api.kit.forhosting.com/pdf/leaflet-folds \
  -H "Authorization: Bearer $KIT_KEY" \
  -H "Content-Type: application/json" \
  -d '{"fold_type":"tri_fold"}'
{
  "fold_type": "tri_fold"
}
{
  "task_id": "tsk_a1b2c3d4e5f6a1b2c3d4e5f6",
  "type": "pdf.leaflet_folds",
  "status": "queued",
  "_links": {
    "result": "/tasks/tsk_…/result"
  }
}

The API is asynchronous: the call returns a task_id immediately and the result arrives by webhook. Polling is capped at 1 req/s per task.

Per request$0.002

Published price — no tokens, no invented credits. A failed task is never charged.

max_mb25
max_pages200
HTTPCodeMeaning
401unauthorizedMissing or invalid API key.
402insufficient_balanceYour balance doesn't cover the task price.
404unknown_typeThat task type doesn't exist.
429rate_limitedToo many requests. Use the webhook instead of polling.

Read the full KIT documentation →