Skip to main content
Question

Multiple pdfs in order sequence in one booklet is possible in FME ?

  • April 5, 2023
  • 3 replies
  • 41 views

malikusama95

i want to merge multiple pdfs in order sequence and in one booklet

how i can do

please help me FME_q1

3 replies

virtualcitymatt
Celebrity
Forum|alt.badge.img+47

I'm not sure FME is the right tool for this task. If you need/want to use FME for this I suggest finding a command line tool which can merge pdf files and use the SystemCaller to run the job.

 

This perhaps could also be done somehow with python in FME.


malikusama95
  • Author
  • 5 replies
  • April 6, 2023

I'm not sure FME is the right tool for this task. If you need/want to use FME for this I suggest finding a command line tool which can merge pdf files and use the SystemCaller to run the job.

 

This perhaps could also be done somehow with python in FME.

Thanks for answer ,

can you please share how can i do with python in FME


virtualcitymatt
Celebrity
Forum|alt.badge.img+47

Thanks for answer ,

can you please share how can i do with python in FME

Here's something I found online which should be helpful: https://stackoverflow.com/questions/3444645/merge-pdf-files

 

In FME you can use a PATH reader to read the file names of the PDF files as features in FME. You can then feed them into the PythonCaller with your code.