DynamicPDF™ Generator for COM/ActiveX natively supports Multi-page Tiff documents and includes a method to quickly convert a multi-page Tiff document to PDF.
Adding a Tiff to PDF
A Tiff can be added to PDF as a multi-page Tiff document using the AppendTiffFile method:
[ASP - VBScript]
<!-- METADATA TYPE="typelib" UUID="{DF9225FE-94A4-490D-8CAD-E8366CE621D3}"-->
<%
' Create a TiffFile object from the TIFF image.
Dim MyDocument
Set MyDocument = Server.CreateObject( "DynamicPDF.Document" )
MyDocument.AppendTiffFile Server.MapPath( "Images/fw9_03.tif" )
' Output the document to a file.
MyDocument.DrawToWeb
Set MyDocument = Nothing
%>
| See Also |
AppendTiffFile Method | Image Class | Images | Image ReUse | Programming with Generator for COM/ActiveX

