Skip to main content

I have compiled a workbench which writes to a multi page PDF. It groups objects by 'page number' derived from a Group_id (using count) after the PDFPage Formatter. My problem is: I have other objects (standard text/logo) which I need to write to every page. How do I get other objects to appear on every page?

Hi @cbrown, you can create N copies of the objects with the Cloner (N = number of pages), add "pdf_page_number" attribute to them, then send them to the PDF writer feature type.


Thanks @takashi worked a treat!