• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

TIFF to PDF

Guest
Aug 07, 2007 Aug 07, 2007

Copy link to clipboard

Copied

Hi all. Just wanted to know if CF8 can convert a TIFF file to a PDF on the fly.

Thanks for your help!
TOPICS
Advanced techniques

Views

2.4K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Aug 08, 2007 Aug 08, 2007

Copy link to clipboard

Copied

I think TIFF To PDF converter is required.
http://www.guangmingsoft.net/tiff2pdf/

Thanks

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Aug 08, 2007 Aug 08, 2007

Copy link to clipboard

Copied

I don't think CF8 can read TIFF files. If you can use CFEXECUTE, you can use GhostScript to convert TIFF to PDF from the command line.

You can also use iText, a Java library for PDFs to do the job.
Using iText to compile multiple Tiff images into a PDF

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Aug 09, 2007 Aug 09, 2007

Copy link to clipboard

Copied

LATEST
ColdFusion 8 does support tiff images in cfdocument. You can use it in two ways

<cfdocument format="pdf">
<img src="tiffImg.tif">
</cfdocument>

OR
<cfdocument format="pdf" src="tiffImage.tif" mimetype="image/tif" />

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation