Sometimes it is essential to convert a PDF to a Multipage TIFF to be able to process it in applications which do not understand the modern PDF format.
With the Aloaha API export2TIFF this can be done with just one simple function call!
Aloaha also contains the function export2FAX to export a PDF document directly to the multipage FAX (TIF) format.
Please note that those APIs do require at least the Enterprise Light license. To be able to evaluate these functions please contact info@aloaha.com and request an evaluation key.
dim pdf
Dim InputPDF
Dim OutputTIF
Dim OutputFAX
Dim exportDPI
set pdf = createobject(“aloahapdf.edit”)
Inputpdf=”c:\2pages.pdf”
OutputTIF=”c:\output.tif”
exportDPI=300
msgbox pdf.export2TIFF(cstr(InputPDF), cstr(OutputTIF), clng(exportDPI))
set pdf = nothing
set pdf = createobject(“aloahapdf.edit”)
Inputpdf=”c:\2pages.pdf”
OutputFAX=”c:\FAXoutput.tif”
msgbox pdf.export2FAX(cstr(InputPDF), cstr(OutputFAX), true)
set pdf = nothing