Merging TIFF to PDF

Advice and Help

Moderator: kcleung

Post Reply
Puzzi22
regular poster
Posts: 26
Joined: Wed Jan 20, 2010 3:43 pm
notabot: 42
notabot2: Human

Merging TIFF to PDF

Post by Puzzi22 »

Hello all:

I know this subject has been discussed before, I just couldn't an answer to my issue. So here it is... I can seem to find a freeware that allows me to merge my TIFF files to PDF. Some "printers" work fine when I try to merge less than 10 pages, but for some reason, they all crash for bigger files. I've tried so many of them, it's almost ridiculous:

-PDFLab
-CuteWriter
-Gimp
-Print2pdf
-Pdfmerge
-Pdfsam
-Office convert tiff to pdf

Anyone had that problem before? Thanks for helping though, I'm out of solutions for now...
kalliwoda
active poster
Posts: 504
Joined: Fri Dec 19, 2008 8:36 pm
notabot: YES
notabot2: Bot
Location: Berlin, Germany

Re: Merging TIFF to PDF

Post by kalliwoda »

I guess I never encountered this problem, because I never even considered the possibility I could get pdfsam to fuse tiff files into a multipage pdf. :?
I always went the "scenic route", converting single pages to pdf, then fused the pdf files into one multipage pdf - have you tried that?
KGill
Copyright Reviewer
Posts: 1295
Joined: Thu Apr 09, 2009 10:16 pm
notabot: 42
notabot2: Human

Re: Merging TIFF to PDF

Post by KGill »

You could try ImageMagick. I can't quite remember the exact command you would use at the moment (it's a command-line program), but it can without question handle it.
http://www.imagemagick.org
carmar1791
active poster
Posts: 201
Joined: Wed Aug 15, 2007 11:24 pm

Re: Merging TIFF to PDF

Post by carmar1791 »

On *nix sistems you have to do this.
Create a folder in your desktop, an call it "a"
Put all your tiff or tif files there.
Open your shell and move there by this command:

cd ./home/youraccountname/Desktop/a

By graphicsmagik or imagemagik you have to give these comands:

convert *.tiff filename.tiff

And you'll obtain a multipage filename.tiff

after , you have to give this command:

convert filename.tiff filename.pdf

and you'll obtain your multipage filename.pdf

Pay attention when you type :all these commands are "case" sensitive

If you use windows you must know dos commands to move to "a" (I have never used dos)
The other commands are the same.

For windows there is pdfill free tools :http://www.pdfill.com/
It's a great program


Greetings
kcleung
Copyright Reviewer
Posts: 127
Joined: Fri Sep 12, 2008 9:38 pm

Re: Merging TIFF to PDF

Post by kcleung »

Suppose you want to merge files a.tiff, b.tiff and c.tiff, with g4 compression, under Linux:

tiffcp -c g4 a.tiff b.tiff c.tiff out.tiff

(or if you want to merge all tiff files in curr dir, you can use wildcard: tiffcp -c g4 *.tiff out.tiff)

tiff2pdf out.tiff > out.pdf

Easy.....

In ubuntu, you need the package libtiff-tools, you can get it by:

sudo apt-get install libtiff-tools
Mazin
regular poster
Posts: 44
Joined: Sun Jan 25, 2009 3:03 am

Re: Merging TIFF to PDF

Post by Mazin »

Ah, there was a reason I wrote this stuff down.

From http://imslp.org/wiki/User:Mazin07:

To convert a series of TIFF images, applying group4 compression and a fixed DPI, into one PDF document

Code: Select all

$ convert *.tiff -compress Group4 -density 300 MyNewDocument.pdf
This is assuming that the TIFFs are already monochrome (pure black and white).
daphnis
Copyright Reviewer
Posts: 1633
Joined: Thu May 17, 2007 7:15 pm
notabot: 42
notabot2: Human

Re: Merging TIFF to PDF

Post by daphnis »

This is assuming that the TIFFs are already monochrome (pure black and white).
...and that the source TIFFs are 300dpi. This should be replaced with whatever the actual density of the images is.
andrewt
regular poster
Posts: 35
Joined: Wed Apr 11, 2007 11:39 pm
notabot: YES
notabot2: Bot
Location: MI, US

Re: Merging TIFF to PDF

Post by andrewt »

I use PDFill. (http://www.pdfill.com/pdf_tools_free.html) It's freeware, converts many formats (including TIFF) to PDF and back, merges PDF, and a bunch of other stuff. When you're converting images to PDF, just make sure you fill in the proper dimensions if it's not 8.5x11.
andrewt
regular poster
Posts: 35
Joined: Wed Apr 11, 2007 11:39 pm
notabot: YES
notabot2: Bot
Location: MI, US

Re: Merging TIFF to PDF

Post by andrewt »

Also, dragging and dropping will work if the Add Image dialog gives an error message.
Generoso
active poster
Posts: 266
Joined: Mon Mar 12, 2007 1:49 pm

Re: Merging TIFF to PDF

Post by Generoso »

On the Mac you can use Adobe Acrobat Pro to combine many Tiff's into a PDF. To do this.... Go to File menu --> Create PDF --> from Multiple files. Choose your tiff files and save.
Its quite easy.
daphnis
Copyright Reviewer
Posts: 1633
Joined: Thu May 17, 2007 7:15 pm
notabot: 42
notabot2: Human

Re: Merging TIFF to PDF

Post by daphnis »

This process is the same regardless of platform. And sure it's easy...if you have Acrobat Pro :)
vinteuil
Groundskeeper
Posts: 1445
Joined: Sun Oct 05, 2008 3:01 pm
notabot: YES
notabot2: Bot
Location: U.S.A.
Contact:

Re: Merging TIFF to PDF

Post by vinteuil »

Generoso wrote:On the Mac you can use Adobe Acrobat Pro to combine many Tiff's into a PDF. To do this.... Go to File menu --> Create PDF --> from Multiple files. Choose your tiff files and save.
Its quite easy.
Of course, if you have a mac, Automator can merge images into PDFs perfectly fine. :D
Formerly known as "perlnerd666"
Post Reply