PDF splitter Plug-in

Hello ,

I need to split my PDF with the condition like if ‘ID’ field found on the page on particular position then that page and the pages behind that should be in same pdf, if another ‘ID’ has been found on any pages after that then the new PDF should start from that page.
I have created the datamapper from existing PDF where I have fetched the ID, Also I want splitted pdf to be saved with name of that particular ID.
How can I achieve that using workflow?

Hello @djinkal,

In order to achieve this you can:

  1. Use the PDF Splitter Workflow plugin to split the PDF input on a set condition
  2. Use the Set Job Infos and Variables Workflow plugin to extract the ID from the split PDF file and allocate the extracted value to a Job Info, Global- or Local Variable
  3. And use the Send to Folder Workflow plugin and apply the Job Info element or custom variable in the File name field, like %9.pdf or %{identifier}.pdf, for example

thank you for the answer. I will try this.