Merging TIFF to PDF
Moderator: kcleung
Merging TIFF to PDF
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...
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...
-
- active poster
- Posts: 504
- Joined: Fri Dec 19, 2008 8:36 pm
- notabot: YES
- notabot2: Bot
- Location: Berlin, Germany
Re: Merging TIFF to PDF
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?
I always went the "scenic route", converting single pages to pdf, then fused the pdf files into one multipage pdf - have you tried that?
Re: Merging TIFF to PDF
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
http://www.imagemagick.org
-
- active poster
- Posts: 201
- Joined: Wed Aug 15, 2007 11:24 pm
Re: Merging TIFF to PDF
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
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
Re: Merging TIFF to PDF
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
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
Re: Merging TIFF to PDF
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
This is assuming that the TIFFs are already monochrome (pure black and white).
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
Re: Merging TIFF to PDF
...and that the source TIFFs are 300dpi. This should be replaced with whatever the actual density of the images is.This is assuming that the TIFFs are already monochrome (pure black and white).
-
- regular poster
- Posts: 35
- Joined: Wed Apr 11, 2007 11:39 pm
- notabot: YES
- notabot2: Bot
- Location: MI, US
Re: Merging TIFF to PDF
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.
-
- regular poster
- Posts: 35
- Joined: Wed Apr 11, 2007 11:39 pm
- notabot: YES
- notabot2: Bot
- Location: MI, US
Re: Merging TIFF to PDF
Also, dragging and dropping will work if the Add Image dialog gives an error message.
Re: Merging TIFF to PDF
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.
Its quite easy.
Re: Merging TIFF to PDF
This process is the same regardless of platform. And sure it's easy...if you have Acrobat Pro
-
- 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
Of course, if you have a mac, Automator can merge images into PDFs perfectly fine.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.
Formerly known as "perlnerd666"