<cfpdf action="addheader" source="../myBook.pdf" destination="../myBookwithheader.pdf" text="Adobe" align="left">
<cfscript>
document format="PDF" pageType="A4" marginBottom="0.1" marginLeft="1.5" marginRight="1.5" marginTop="0.2" unit="cm" filename="test.pdf" overwrite=true { documentitem type="header" { include template="pdfheader.cfm"; } documentitem type="footer" { include template="pdffooter.cfm"; } include template="pdfcontent.cfm";}
</cfscript>It doesn't seem to allow adding a header/footer into an existing document. I already have the pdfs I just need to add the dynamic header/footer at the same time I merge them.