The Append PDF API automates the process of appending multiple PDF files together. You can append to a new pdf file, an existing pdf file or append a list of files together. The result file is optimized for space.
To be able to evaluate the functions below a valid license key is required. Please request one from aloaha@wrocklage.de
dim pdf
dim file1
dim file2
dim file3
file1="d:\new.pdf"
file2="d:\newpdf.pdf"
file3="d:\out.pdf"
set pdf = createobject("aloahapdf.edit")
'seal all formfields when merging
pdf.SealWhenAppend=true
call pdf.appendpdf(cstr(file1),cstr(file2))
call pdf.appendpdf(cstr(file1),cstr(file3))
pdf.SealWhenAppend=false
set pdf = nothing
Please send us your question.
Download PDF SDK here!Please request a free evaluation key from aloaha@wrocklage.de! |
Merge PDF DocumentsPlease have also a look at this fast merge API |
