I am trying to display a tif as a pdf document using coldfusion with the following code:开发者_如何学编程
<cfdocument format="pdf" overwrite="1" margintop="1">
<img src="test3.tif" />
</cfdocument>
Now this works, but it will only show the first page of the tiff. Is there anyway to specifically load a 2nd or 3rd page?
Thanks
You can use imageUtils (http://imageutils.riaforge.org/) from RIAForge to extra TIFF pages. You would need to edit your HTML inside cfdocument obviously to put each page you want to use.
精彩评论