# Introducing Flowing Content for Dynamic Page Generation

> Text that doesn't fit on one page now flows automatically across as many pages as needed. Perfect for reports, articles, invoices, and any document where content length varies.

- **Author**: Rishi Mohan
- **Published**: 2026-04-29
- **Tags**: Updates, Features, Studio
- **Read time**: 3 min read
- **URL**: https://orshot.com/blog/introducing-flowing-content

---

Until now, if your text didn't fit on a page, you had three options: shrink it (Fit), clip it (Truncate), or let it overflow outside the container. None of these helped when you actually needed that text to continue on the next page.

Today we're launching **Flowing Content** — a new text mode in [Orshot Studio](https://orshot.com/features/orshot-studio) that automatically splits long text across multiple pages. Design one page, and the engine generates as many overflow pages as the content needs.

## What It Does

Set any text element to **Flow** mode, and it just works:

- Write an article, paste an invoice body, or pass a long string via API
- Orshot figures out where the page breaks fall and creates overflow pages
- Headers, footers, logos — anything marked as **repeating** — shows up on every page
- Page numbers (`}` / `}`) update automatically

You design a single template page. The engine does the rest.

## How It Works

<iframe
  width="100%"
  height="460"
  src="https://www.youtube.com/embed/jTGSg9U1Ku8?si=3C4uq-1x89zhs9_A"
  title="YouTube video player"
  frameBorder="0"
  allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
  referrerPolicy="strict-origin-when-cross-origin"
  allowFullScreen
></iframe>

## Why It Matters

If you generate reports, certificates, invoices, or any document where the amount of text changes per render, you've probably hit this wall: a 3-paragraph summary fits on one page, but a 10-paragraph one needs three. Before flowing content, you'd either truncate the text or build multiple fixed-length templates.

Now you don't have to think about it. One template handles 1-page and 20-page documents equally.

**Common use cases:**

- **Reports and articles** — quarterly summaries, blog-to-PDF pipelines, whitepapers
- **Invoices and receipts** — line item lists that vary from 5 to 500
- **Certificates** — course descriptions that change per program
- **Legal and compliance docs** — terms, contracts, policy documents

## How to Set It Up

![](https://orshot.com/docs/orshot-studio/text-modes.png)

1. Open your template in [Orshot Studio](https://orshot.com/studio)
2. Select the text element that should flow
3. In the Styles panel, set **Text Autofit** to **Flow**
4. Mark any headers, footers, or logos as **Repeat on overflow pages**
5. Optionally add `}` / `}` to a repeating text element for page numbers

That's it. Preview the template and you'll see overflow pages appear as you add more text.

## How It Works via API

The API request is the same as any other render — just pass your text in `modifications`:```json
{
  "templateId": "<YOUR_TEMPLATE_ID>",
  "modifications": {
    "body": "Your long-form content goes here..."
  },
  "response": {
    "format": "pdf",
    "type": "url"
  }
}
```The response tells you how many pages were generated:```json
{
  "data": [
    { "page": 1, "content": "https://..." },
    { "page": 2, "content": "https://...", "flowPage": 1 },
    { "page": 3, "content": "https://...", "flowPage": 2 }
  ],
  "totalPages": 3,
  "flowTotalPages": 2
}
```Works with all output formats — PNG, JPEG, WebP, PDF, and even video.

## Fine-Tuning

For most templates the defaults work great. But if you need more control:

- **Flow Zones** let you define exactly where text should appear on overflow pages (custom Y position and height per page)
- **Page break controls** let you choose break granularity (line, word, or character) and set minimum lines before/after a break to prevent orphans and widows
- **Rich text** is fully supported — bold, italic, colored text, inline styles all carry over correctly across page breaks

## Render Costs

Each page in the output counts as a render, same as carousel pages. A flow template that produces 5 pages costs 5 renders. Use `includePages` to render only the pages you need.

---

Flowing content is available now in Orshot Studio on all plans. Read the [full documentation](https://orshot.com/docs/orshot-studio/flowing-content) for detailed setup instructions, or jump into [Studio](https://orshot.com/studio) and try it.